Site logo

Archived topic

Background-color, Font-color and transparency for sticky and mobile-navigation

5 replies · Started by Torsten on February 19, 2017

Viewing posts 1–6 of 6

Very satisfied with the theme!

2 Questions:

1) Is it planed to administrate the colors for the sticky and mobile navigation or do I have to do it via css?

2) The mobile slide-in navigation does not disappear after clicking when I use anchor-links on the page. Any trick?

regards, Totti

Thanks, Leo, 2) works fine now! 1) a simple example how to do it correct would be great! ;-)

For sticky navigation, try something like this:

.main-navigation.navigation-clone {
    background-color: #ffffff;
}
.main-navigation.navigation-clone .main-nav ul li a {
    color: #000000;
}

Couple questions for the mobile navgiation:
- Are you using a mobile header?
- Are you wanting to change just the header color or the entire slideout navigation?

Let me know.

Thanks again Leo!

mobile header and slideout navigation...

Try this:

@media (max-width: 768px) {
    .main-navigation {
        background-color: #ffffff;
    }
    .main-navigation .main-nav ul li a {
        color: #000000;
    }
}

Let me know.

This archived topic is closed to new replies.