• Resolved hvdsmedia

    (@hvdsmedia)


    I’ve built a site around this theme, you can view it at

    https://hollywood-multimedia.com/wordpress/

    and everything looked great but we wanted to change the background to black and all the text white. I was able to change the backgrounds and some of the text, but I’ve looked through the style sheet and cannot figure out how to change the main text and heading. Any help would be greatly appreciated.

Viewing 7 replies - 1 through 7 (of 7 total)
  • You have to go to your theme options and choose custom style. If you put for example this in:

    body
    {
    color: #FFFFFF;
    }

    h1{
    color: #FFFFFF;
    }

    It will change some of your text and headings to white. So just add everything you want to change here and don’t forget to press save ??

    Thread Starter hvdsmedia

    (@hvdsmedia)

    Many many thanks, it worked perfectly! I am still having the same issue with my menu, when its not hovered or selected the text is black on a black background and I need that to be white as well. Is there a custom code to call up to make that text be white?

    You could try to add this and change the colour to what you want.

    #nav a {
    color: #FFFFFF;
    background: #000000;
    }

    Thread Starter hvdsmedia

    (@hvdsmedia)

    Thanks for your speedy response! It seems to have worked partially but only at certain times. Any idea why that would be?

    yes probably because a can have more options:

    a:link {color:#FFFFFF;} /* unvisited link */
    a:visited {color:#FFFFFF;} /* visited link */
    a:hover {color:#FFFFFF;} /* mouse over link */
    a:active {color:#FFFFFF;} /* selected link */

    so you could try to add css for every state of the link you need… Like this:

    #nav a:visited {
    color: #FFFFFF;
    background: #000000;
    }

    Thread Starter hvdsmedia

    (@hvdsmedia)

    You have been a life saver, thank you so much for all your help.

    My pleasure! :))

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Changing Font Color Help!’ is closed to new replies.