• How do you change the configuration for the navigation bar (home, about, etc.)? I’d like to move the tabs to the right side, make them more prominent, and have searched but cannot find anywhere in the Atahualpa Theme Options how to control this.

    My site is https://www.therealmoflife.com. Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi

    To move your nav bar to the right, add this to your stylesheet
    /wp-content/themes/{themename}/style.css

    ul#rmenu2 { float: right; }

    You will have to better define what “more prominent” means to you.

    Thread Starter rockwork

    (@rockwork)

    Thank you. I’d like to try it bold.

    Hi

    So you know, I am overriding settings in the theme control panel with this CSS.

    In style.css, find on line 2025

    ul.rMenu li a {
    padding:4px 5px;
    }

    Change it to this

    ul.rMenu li a {
    color:#000000 !important;
    font-weight:bold !important;
    padding:4px 5px;
    }

    That makes the menu items bold and a darker black. The !important is necessary to override in case any settings in the theme control panel would conflict with these settings. This could need a few more tweaks to handle visited links, hovered links, etc. Can’t tell until you install the new code.

    Thread Starter rockwork

    (@rockwork)

    Your instruction all worked great. Thank you so much.

    you are welcome

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