Categories: another category, Uncategorized
Is shifting it over.
Instead of using:
<center>
<img style="margin: 125px 55px 0 0;" src="http://www.testing.livelikekings.net/wp-content/uploads/2013/01/footer-deco.png">
</center>
do something like this:
<div style="clear:both; text-align:center;>
<img style="margin: 100px auto 0;" src="http://www.testing.livelikekings.net/wp-content/uploads/2013/01/footer-deco.png">
</div>
Yes, to the above, except that it’s much preferred to avoid using inline CSS at all. So you could put a specific class in for the image and then put the CSS in the external CSS file.
But for sure, don’t use <center> tags as they are deprecated and are unsupported in HTML5
yeah i should have hinted at the class, just didnt feel like all the typing. never use inline styles.
Fixed! Thank you both so much, I really appreciate it! Cheers.