This topic has 4 replies, 2 voices, and was last updated 5 years, 3 months ago ago by Rose Tyler
How do I widen the header container using custom css? right now it’s set to 1170 max, but I’d like it to be wider on desktop view. 1500 or so. whatever is normal wide view.
Hello,
Add this code in Theme Options > Custom CSS > Custom CSS for desctop:
.main-header .container, .top-bar .container {
width: 100%;
}
Regards
What about the sticky header with? I’d like them to match.
Nick
In this case, use the next code:
.main-header .container,
.top-bar .container,
.fixed-header .container {
width: 100%;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up