New Landing How can we help? Themeforest Theme Support Flexform Footer text color when link

Viewing 4 posts - 1 through 4 (of 4 total)
  • Posted in: Flexform
  • #24994
    Bitedge
    Member
    Post count: 345

    Hi guys,

    I have a couple of text links in the footer and they have decided to be red. I set the footer text to black in the color customizer and the text is black unless its a link. No where else on the site are links red and it does not look good.

    Ideally I would like to make the links black and when hovered over turn red (like all the menus, when I tried adding these links as a menu they were still red). How can we do that? If that is not possible then how can we just make them black.

    Here is the footer
    http://australian-sports-betting-guide.com.au/sports-betting-tax/

    Cheers

    #25132
    Cosmin – SUPPORT
    Member
    Post count: 3851

    It’s because of this custom CSS you have:

    #footer a:not(.sf-button) {
        color: #FB3C2D;
    }

    What that says is “make all the links that don’t have a sf-button class on them, red (#FB3C2D)”.

    Regards,
    ————————————————————————————————————

    Cosmin – Support

    #25145
    Bitedge
    Member
    Post count: 345

    Hi,

    Strange I don’t have that in the custom CCS box in theme options>general options. Where do you see it?

    How can we make the links in the footer black and when hovered over turn red or if that is not possible then how can we just make them black?

    Thanks

    #25370
    Cosmin – SUPPORT
    Member
    Post count: 3851

    It’s pretty simple with CSS, I recommend learning the basics if you’re into customizations:

    #footer a {
        color: #000 !important;
    }
    #footer a:hover {
        color: #FB3C2D !important;
    }
    

    Regards,
    ————————————————————————————————————

    Cosmin – Support

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.