Hello,
I have used some additional CSS to adapt my design which worked fine.
In particular:
To add a background post color I’ve used:
body .format-standard .entry-wrap {
background:#e3e4e5 !important;
}
To remove the page title I’ve used:
.x-header-landmark {
display: none;
}
AND
To remove the mobile button shadow I’ve used:
.x-btn-navbar.collapsed, .x-btn-navbar.collapsed:hover {
-webkit-box-shadow: none;
box-shadow: none;
}
However, my problem is that , if I’m selecting to another device in the costumiser, e.g. phone. the code above won’t ‘work’ anymore.
Is there any piece of code I can add to make my layout the same throughout all devices?
Looking forward to any help