You can see here http://www.distinctionsmag.com/ the "Recent Articles" text under the gallery is right aligned. It uses the same css as the "Featured Videos" next to it which is centered like it should be. I've even tried setting it with <h4 align="center"> but it does nothing. Even setting it as left in css and html does nothing? Any ideas?
Do you have your h4 code defined in your css? If not try this: h4 { text-align: center; } Code (markup): Hope that helps
Nope that doesn't work. I might add the test that displays is generated from a php function that takes the category id and turns it into the category name. That may have something to do with it.
add width:100%; in the .posts section on the file http://www.distinctionsmag.com/wp-content/themes/metro_10/style.css .posts { background: #FFFFFF; float: left; margin: 0px 0px 10px 0px; padding: 10px; display: inline; [B]width:100%;[/B] } Code (markup):
the div posts was bigger than it should, so the buttons and some text was hidden and thats why the title seems to be right aligned