• Browsing through the stylcss and can’t figure out what to change for colors. This theme seems to use 3 digit instead of 6 though. Wanting to make txt a dark grey or black and links red on this site.

Viewing 1 replies (of 1 total)
  • Add this code at the end of your child themes style.css file and change the colors.

    Links

    a {
        color: #FFFF00;
        text-decoration: none;
    }

    and

    a:hover {
        color: #FFFF00;
        text-decoration: none;
    }

    Try inspecting each element from the front end with a browser tool like Firebug to find the correct classes and change them in real time using the browser.

    Font Color

    body {
    color: #444444;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Changing Text and Link Colors in style.css Beautiful pro theme’ is closed to new replies.