Flexible width on a specific post
- The topic ‘Flexible width on a specific post’ is closed to new replies.
Need help? Check out our Support site, then
I would like to have a flexible width just on one specific post.
The post is this one:
https://terradiciona.com/2016/01/23/prenota-prodotti/
Is it possible?
Thanks
The blog I need help with is: (visible only to logged in users)
Hello,
You can use the following CSS code to change the width of the post:
@media screen and (min-width: 960px) {
body.postid-1369 #main-content {
width: 700px;
}
}
Change the width value to your liking.
Thanks, it’s working. There is just a problem, with some screen resolutions it appears below the horizontal scroll-bar. In order to avoid this, is it possible to switch to the tablet view? In order words can I define the width that switch to the table view? Now is a little-bit lower than needed. Thanks.
I’m afraid it is not possible to modify breakpoints using Custom CSS, but you can try changing the table width using the following code:
body.postid-1369 #ProductBrowser-1 {
width: 550px;
}
Fine, thanks!
You’re welcome