Hi,
that’s simply the result of how your theme works. It probably has that sidebar at all times, even if you don’t have widgets in it.
This is not something that TablePress can change, but something that has to be adjusted in your theme. One common way for that is to use a different “Page Template”. Most themes come with a “Default” page template, and a “Full width” page template, which you can then select on the “Edit” screen of a page.
I suggest that you check this for your theme.
Regards,
Tobias
My theme didn’t come with a Full Width Page Template, I’ve created my own. It’s okay though, since you said it was in the theme I went back and played with it. I’ve got it working now.
Hi,
very nice! Good to hear that you could solve this by adjusting the theme! 🙂
Best wishes,
Tobias
Auto width works in Chrome, but not Firefox or IE. Table overflows page and cuts off cells. Using Weaver II theme with right sidebar enabled.
I’ve used .tablepress {
width: auto;
margin: 0 auto 1em;
}
in the custom CSS, but only Chrome cooperates with this code. Suggestions?
See this page: http://zelmasawards.com/corporate/
Thanks
Hi,
thanks for your post, and sorry for the trouble.
The reason for this is more the handling of images in tables, which is heavily influenced by the theme, and sometimes treated differently in browsers.
However, your table looks ok for me in Chrome and Firefox. You might however want to add this “Custom CSS”:
#content .tablepress img {
max-width: none;
}
Regards,
Tobias
tried the following and it worked for me:
.tablepress-id-1 {
width: 90%;
margin: 0 auto 1em;
}
the page i am working on currently and another page that is ready.
please let me know if there is a better solution…
Hi,
sure, reducing the width is possible with the code you posted. Nothing wrong with that 🙂
Regards,
Tobias