Hello,
I am using the pipeline theme.
Is it possible to make my whole website display full width?
Thanks
Hello,
I am using the pipeline theme.
Is it possible to make my whole website display full width?
Thanks
@sumnb0011 - please add this css to the very end of theme.css file and check
.wrapper, .wrapper .grandparent .header__dropdown__wrapper {
max-width: 100%;}
@sumnb0011 , do this to fix it in 20 seconds:
.wrapper{
max-width: calc(100% - 2px) !important;
padding: 0 !important;
}
@media (max-width: 749px){
.wrapper{
max-width: calc(100%) !important;
padding: 0 !important;
}
}
If you want it only on mobile, you can use this code instead:
@media (max-width: 749px){
.wrapper{
max-width: calc(100%) !important;
padding: 0 !important;
}
}
Kind regards,
Diego