Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Header configuration & styling (http://forum.bytesforall.com/forumdisplay.php?f=15)
-   -   picture in posts (http://forum.bytesforall.com/showthread.php?t=1130)

zizi Apr 6, 2009 07:21 PM

picture in posts
 
I tried to have two thumbnails at the middle of the page, but each time I center them, they go one below each other, not together at the middle. When I remove image text(text below thumbs), it works, but when I add text below the thumbs, well the thumbs change positions.

Sorry if this is newbee basics, I have been working on it for 3 days before asking here ! :)

paulae Apr 6, 2009 07:27 PM

The only way I've found to get 2 images to appear side by side is to use a regular old HTML table. I can't recall if the default editor has a table builder, but you can get the Tiny MCE Advanced plugin to be sure you'll have the table builder. Just click on the icon and build your tables as you would in Dreamweaver. You can right-click in the table to change table, cell or row properties.

There are also some table options you can set in the theme options area.

Flynn Apr 6, 2009 08:10 PM

For everything that needs to be (and stay) side by side I'd use a table.

HTML Code:

<table id="mytable" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="leftcell"> ... </td>
<td class="rightcell"> ... </td>
</tr>
</table>

CSS Insert, i.e.:

HTML Code:

table#mytable {
font-size: 100%; /* otherwise, some browsers may use a smaller font inside tables */
width: 100%;
}
table#mytable td {
vertical-align: top;
padding: 5px;
}
td.leftcell {
width: 100px;
}


zizi Apr 6, 2009 08:21 PM

Thank you Paulae, I will have a try ! :)

zizi Apr 6, 2009 08:23 PM

Thank you Flynn !

Yes I must get right from the beginning of my blog because I want to have a very well uniformized blog and respecting its aesthetics at every single post..


All times are GMT -6. The time now is 05:30 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.