Change link colours, change font on some links

  • Hello!

    I’m new to this, so please bear with me. I’ve tried some of the CSS you posted on the forum, and some has helped, but ultimately I can’t find a fix all solution.

    1. Using the default colour scheme, all I need is to change all the green coloured links to white.
    2. Need to change the font on links in my press page to same font used on headers
    3. Possible to have these press photos in a 3×3 grid view? Can’t seem to figure it out

    Thank you in advance!

    The blog I need help with is: (visible only to logged in users)

  • Hello,

    1. There are different CSS targets for different types of links… I’m not sure which links you’re referring to, but the following is an overall style that should change the color of all links (including the links in social media menu):

    a, a:link {
        color: white;
    }
    a:focus, a:hover, a:active {
        color: white;
    }
    

    If you’re only trying to change certain links, I’ll need to know which those are and where to find them in order to determine the correct CSS

    2. To change the link heading font on the Press page, use:

    #page-866 a, a:link
    font-family: "ff-market-web-1","ff-market-web-2",cursive;
    }

    3. You can try adding your images by using the Gallery Block in the editor, and you can select the number of columns you’d like to display.

    I hope that helps, let us know if you need further assistance.

    PS – Great looking site and logo! When it’s finished, we’ll add it to our showcase :)

  • The topic ‘Change link colours, change font on some links’ is closed to new replies.