Link to home
Start Free TrialLog in
Avatar of WO2015
WO2015

asked on

Navigation is not showing up on WordPress site

All of the sudden my posts do not show up properly and my navigation drops and you cant see it. I am a novice at WordPress, can someone please assist? The posts are all on the default template set up, which is what I have always used. The facts its affecting every page (other than the home page) makes me feel a setting is off.  Can someone please check out the site and advise?  Thank you!!

**UPDATE I figured out the posts but my navigation isnt showing in the proper spot on all pages except the home page like it use to. Is it maybe too many words?
wise-eats.com
Avatar of Robert Perez
Robert Perez

Hello,

It looks like your logo is causing the header to fall out of its designated space. In order for the menu to move back to its designated spot, you'll have to reduce the height down to something like 60px-65px.

it seems there are a couple options:
1.
.site-logo img {
    margin: 0px;
    height: 60px;
    width: auto;
}

Open in new window


or
2.
.site-logo {
    float: left;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.site-logo img {
    height: 89px;
    width: auto;
}

Open in new window


Option 2 gives you a bigger logo, so it just depends on what your liking is.
Avatar of WO2015

ASKER

Thank you, I do not want to make the logo any smaller. Is there a way to make the search box shorter?  I removed it completely and the nav now shows properly but Id like the search still
Yes, If you turn it back on I can provide you some CSS to make it smaller. (I just need to be able to see it, to see what styles it currently has.)
Avatar of WO2015

ASKER

Ok great, its back on.
ASKER CERTIFIED SOLUTION
Avatar of Robert Perez
Robert Perez

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of WO2015

ASKER

I know I should be able to find this easily but I cant see to find it in any of the "theme files".  Any idea what file this would be in?  I thought the Visual Editor Stylesheet (editor-style.css).
in your file structure, you should have a "style.css" that has a compilation of ALL the CSS on the site. You'll know you've found it because generally, they have a "Table of Contents" in order to organize their CSS properly.

-Robert
Avatar of WO2015

ASKER

Got it, thank you!!!