Viewing 4 reply threads
You must be logged in to reply to this topic.
Hi,
how can i fix that small gap between the menu and dropdown list? I havent changed anything in the CSS…
Thanks!
Here’s picture of the situation
https://drive.google.com/file/d/0B_5mc8Bu9M7HVGJ6OTRwZGFpZTA/view?usp=sharing
Fixed it by changing the height of the top nav! But now I have a another problem: the top nav area is not in the mobile version even though I added
<span style=”color: #444444; font-family: Inconsolata, Consolas, Monaco, ‘Lucida Console’, monospace; font-size: 15px; line-height: 24px; white-space: pre; background-color: #f9f9f9;”>@media (max-width: 767px){ .top_nav { display: block;} }</span>
to my CSS. How to fix this?
I added this to my CSS but it’s not working @media (max-width: 767px){ .top_nav { display: block;} }
Hello,
Sorry for the late reply.
Please add this code into your custom css box:
@media (max-width: 480px){
.top_nav, .top_nav .widget {
margin-top: -14px;
display: block;
}}
Let us know.
Best regards!
You must be logged in to reply to this topic.