Quote:
Originally Posted by Amalthia
Hi, I've upgraded to 6.0 and this code no longer works? I've entered into the Look and Feel Extra CSS section.
img {text-align: center;}
|
Is that supposed to work?
That would mean, AFAIK, that whatever inside the <img> will be centered in the <img>, but the <img> has no content, it is content itself, what you need is adding "text-align: center" to the parent element, <div>, <p> or whatever, so that the <img> is centered inside it.
Similarly, adding "text-align: center" to a <table> does not center the table on the page, but it centers the text inside the table cells.