Hello.
How to remove margin from div.header_main_alternate.container_wrap.
Check: http://screencast.com/t/GF2hCsZGf
Thank you.
Hey Bastian Jorgensen!
You can’t remove the margin of the header_main div because there is none but you can increase the width of the container inside the div. You can use the #header_main .container selector:
@media only screen and (min-width: 1140px) {
.responsive #header_main .container {
width: 1200px;
}
}
The media query above is for desktop view. You can use different media queries to target the container on different screen sizes.
Regards,
Ismael
Hello Isamel,
Of course there is a margin in left an right. :-)
This CSS sort out my problem.
#header_main_alternate .container { !important; margin-left: 0px !important; min-width: 1130px !important; }