♡ help me, please? ♡

This is an archived version of FeralFront. While you can surf through all the content that was ever created on FeralFront, no new content can be created.
If you'd like some free FeralFront memorabilia to look back on fondly, see this thread from Dynamo (if this message is still here, we still have memorabilia): https://feralfront.com/thread/2669184-free-feralfront-memorabilia/.
  • ♡--- hello ---♡
    i am currently working on customizing my profile.
    this is the first time i've done this so i honestly
    have no clue what i'm doing. i've just been messing
    around with things practically all day, and i'd say
    that so far it's turning out to be pretty decent.
    anyway, skipping to the reason that i am asking
    for help, i've been trying to figure out how to
    change the color of the links on my profile but
    i have no clue how. anyone mind helping me
    out with this? thanks! c(:

  • [align=center]Changing link colors is a pretty simple task I guess.
    Firstly, all your links are "a" elements or things, which might be a dumb name but
    it's what I call 'em since they're made with <a> tags in HTML.
    When you want to change their color, you'd need a piece of code to do with the "a" things, and it may look something like this (or exactly like this :3):


    Code
    1. a{ color: SOME COLOR GOES HERE; ...other stuff... }


    If you want to change the way a link looks when you hover over it, then you'd put stuff (or attributes, like color or font family) inside this:


    Code
    1. a:hover{ STUFF GOES HERE }


    If you want to know what you can put where or if your code doesn't work, I'd be happy to help you out. :)

  • ♡--- hello and thank you ---♡
    thank you for offering your help! i tried
    popping your provided code into my coding
    but had no clue where to put it... yeahh...


    i failed.


    would you mind helping me with placement
    and such? basically i just want all the links
    to be straight up #000000 at all times.
    my current coding...


    The post was edited 1 time, last by αll thαt jαzz!? ().

  • [align=center]Ok then, I'll send you the fixed code soon today, and if it helps it might be easier to look at this code in another way so it's not a big confusing mess of letters and stuff.


    Think of thef braces "{}" as the start and end of a sheet of paper with a list on it.
    The list's name IS the name of the "thing" it describes[glow=yellow,2,300] (like your header, text boxes,
    actual text, etc.)[/glow], which is outside the braces, kinda like this:

    Code
    1. NAME OF THE LIST'S THING --> body{ ...stuff... }


    [font=times new roman][color=white]
    Here, the "stuff" changes how your profile's "body" looks, which is probably
    not much. You've probably noticed how "stuff" in a list ends with a semicolon,
    which is like a period, since it "ends" a sentence in your list. But you can't use
    periods since they have other purposes in the language and the computer
    might get confused :3


    So what about the placement of other codes to add?


    If your code to add looks like another sheet of paper
    [glow=yellow,2,300](e.g. it has a name, pair of braces, and stuff inside)[/glow],
    put it between any other sheets of paper you like
    in your existing code, just not inside another one
    cause you can't put paper inside paper.


    Oh and if it has existing <style> tags on it, I'd suggest
    you remove those, except keep it between the main
    <style> that are already in your code. Having one pair
    is enough.

  • [align=center]Ok here's the *supposedly* fixed camp code:



    It had other backgrounds in some boxes and was looking different from your camp so I don't know if I accidentally broke it or something :3.