Viewing 10 replies - 1 through 10 (of 10 total)
  • Hi gon2train!

    Assuming you are using the right floated navigation, you can adjust the stylesheet:

    .nav-main-right {
      font-size: 16px; /* default size is 13px */
    }

    Change the font-size to your needed size; however, going too large will mess with the navigation design/layout.

    Also, by increase the font-size, you’ll probably need to adjust the dropdown navigation (if you have any):

    #menu .nav-main-right > div > ul ul {
      margin:-1px 0 0 0; /* change to -3px (just an estimate) */
    }
    Thread Starter gon2train

    (@gon2train)

    Thanks much.

    This would be menu at the top of the page over the header.

    Thread Starter gon2train

    (@gon2train)

    looked and looked and cant find where it has top menu font size :<(

    You should be able to find the sections to edit inside the style.css file. The file is located in: wp-content/themes/adventure-journal/style.css

    Thread Starter gon2train

    (@gon2train)

    thanks .. I will look more to see if I can find it …

    is there any reason that formatting isn’t taking table html codes?
    I am using this
    <table style=”border: 0;” cellspacing=”20″ cellpadding=”1″>
    <tbody>
    <tr>
    <td>
    text
    </td>
    <td>
    picture
    </td>
    </tr>
    </tbody>
    </table>

    Thread Starter gon2train

    (@gon2train)

    I figured out the table issue. But never could find the font for the menu.

    Do you have a link to your live site? Seeing a live version makes things a lot easier to evaluate.

    Thread Starter gon2train

    (@gon2train)

    Sure. Here you go.

    http://dogwooddogtraining.com

    I know this theme is older. Would there be a better theme to use that will still give me same affects and looks?

    Thanks so much for your input and help.

    In the file: themes/adventure-journal/style.css

    Edit style.css and do a search for:

    /* Main Navigation Styling */

    Right below this you’ll see:

    .nav-main-right { background:url(images/mp-navigation-main-sprite.png) no-repeat right -94px; padding-right:11px; }

    Add font-size to this class ^:

    .nav-main-right { background:url(images/mp-navigation-main-sprite.png) no-repeat right -94px; padding-right:11px; font-size:16px; }

    Now as stated above, you’ll need to also adjust your dropdown menu. Locate:

    #menu .nav-main-right > div > ul ul { position:absolute !important; top:100%; left:0; display:none; width:180px; z-index:99999; background-image:none; padding:0px; margin:-1px 0 0 0; }

    And modify:

    margin:-1px 0 0 0;

    To:

    margin:-3px 0 0 0;

    You need to play with this value as I don’t know how large you are adjusting the font-size.

    Thread Starter gon2train

    (@gon2train)

    wow … you are so awesome … thanks much for looking it up .. I will take a look tomorrow to find ..

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Menu font size’ is closed to new replies.