- Posts: 13
- Thank you received: 0
Hi,
Apparently your template stretches all tables on 100%. This can be overridden by using another css rule. If you have your website somewhere online, I could inspect it a bit and tell you the exact rule that should stand there.
Anyway, if this is the only grid on this page, you can do something like
#data_listings2_pj_0 table form table {
width: 300px;
}
Please Log in or Create an account to join the conversation.
Thanks for your time tomaz!
Here's the link to my site with the table
saabarchive.net/index.php/colorsmenu
If you're willing to take a look, that would be great! (the site is still under construction)
Please Log in or Create an account to join the conversation.
If you put this in your css file it should work for the table that appears on that link that you have posted. But as said before the selector #data_listings2_vs_0 depends on a lot of things.
#data_listings2_vs_0 table form table {
width: 275px;
}
width: 100%;
border: 1px solid #e1e1e1;
Please Log in or Create an account to join the conversation.