css - Float h4 right after image? -
i having problems floating h4 after image. works long there room in table cell start resize window text floating left under imag, want ti right after when window being resized.
here code:
<td> <img src="theme/stats.png"> <h4>we grow channel!</h3> <div style="clear:both"></div> <br /> network guarantees grow channel day one, small channels! our network <b>help minimum of 5 new subscribers per day join us!</b> </td> h4 { font-size: 30px; font-family: 'bitter', serif; color: black; float: left; margin: 0 auto; } td img { float: left; margin-right: 20px; }
you can see live here, try resize window see happens title + icons: http://vizz.tv/
i guess should remove float
property <h4>
achieve this:
h4 { /* float: left; */ margin: 0px 0px 0px 55px; ... }
Comments
Post a Comment