Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The forum ‘Gmedia Gallery WordPress Plugin’ is closed to new topics and replies.
Forum closed. Use forum at Wordpress.org: Gmedia Support
Forum
Tagged: RealSlider, resize
This maybe be a simple issue to fix, but when ever I set the size in the RealSlider module to a % it overrides the set cell size and stretches the cell across 100% of the page. The only way I can contain it in the cell is to set an absolute pixel size. How do I set it to be 100% of the table cell what ever size that cell might be?
Post link to your gallery page, so I can give some advise.
Sorry, the link to the page: http://aroutfitting.com/product-demo.
Thanks.
Use the property table-layout:fixed on the table to get equally spaced cells. If a column has a width set, then no matter what the content is, it will be the specified width. Columns without a width set will divide whatever room is left over among themselves.
<table style='table-layout:fixed'>
<tr>
<td>Gallery with 100% width</td>
<td>content</td>
</tr>
</table>