Support » Fixing WordPress » navigation bar words

  • Hi,

    I’ve got Geraldine theme from bluchic on my site
    http://www.theeverydayadventure.com
    and I can change teh navigation bar colour but not the words on the navigation bar (they’re black, I want them to be white).

    Is anyone able to tell me how to do that? (preferably avoiding any coding)

    Thanks for the help!!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    What have bluchic said about this?

    Thread Starter thehappyeater

    (@thehappyeater)

    I’m waiting for them to get back to me.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    If bluchic aren’t providing you with support then it may be worth switching to a theme distributed on WordPress.org, as these forums are meant to support them.

    Thread Starter thehappyeater

    (@thehappyeater)

    thanks.

    I noticed that you would prefer to do it without any code modifications, but in case you decide to make some here is a suggestion on how to change the color of the links in the navigation bar of your theme.

    Edit the stylesheet.css file of the theme. The path to the file on your hosting account would be public_html/wp-content/themes/Geraldine/stylesheet.css. Of course, you can also edit theme files from the backend of your WordPress.

    In the stylesheet.css file around line 316 find the code:

    .nav a {
        display: block;
        padding: 15px;
    }

    and change it into

    .nav a {
        display: block;
        padding: 15px;
        color: white;
    }

    Then clear the browser cache and refresh the frontend of your site. In case you don’t want to modify the code of the original theme files, you can create a child theme, switch to it and modify the child theme.

    Hope this helps.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘navigation bar words’ is closed to new replies.