Main Menu Categories not Clickable

Latest Reply from AnnieinBC at 2016-06-23 16:07:47 Solution
Hi I am using HappyFood theme and have made different categories for posts, and added these categories to the Main Menu.

However, they aren't clickable - how do I change it so people can click on a category and it will take them to those specific posts.

Thanks
Hi!

I have checked the theme, it works correctly and categories are clickable. Could you clarify the URL of your website in order to check the issue?
Hi, thanks for responding....the site is:

http://www.bradleycreekgarlicfarms. com
Hi!

I have visited your website and checked the issue. The main menu are not clickable because the logo container overlaps the mainmenu container. I think that the best way to fix this issue is adding the padding-bottom property. In this case your logo will be displayed correctly and it will not overlap the main menu.

To do it you need to find the following code in the style.css file located in the theme directory:

#secondarymenu-container {
height:100px;
position:relative;
z-index:19;
}


and add the padding-bottom property:

#secondarymenu-container {
height:100px;
position:relative;
z-index:19;
padding-bottom: 47px;
}


You can also fix this issue by changing the z-index property for the secondarymenu or mainmenu containers, but in this case your logo will be overlapped by the main menu.
Thanks! I will try that today, hopefully that does the trick
Where would I just change the size of the logo? I could easier reduce it and that should have it not overlapping the menu

Thanks
I got it..and it works. Thanks :)

Leave a reply

Add codeAdd image