plewis22
Forum Replies Created
-
Forum: Themes and Templates
In reply to: how to remove whitespace at the top of twenty eleven?OK I think I’ve got it. For anyone else having this problem, I fixed it with the “margin” property of #site-description (line 526) and the “padding” of site-title (line 510). Here’s the code I added to my (child!) style.css file:
#site-title {
padding: 1.5em 0 0;
}#site-description {
margin: 0 270px 1.5em 0;
}And the result:
Forum: Themes and Templates
In reply to: how to remove whitespace at the top of twenty eleven?esmi, I’m already using a child theme, but thank you for the reminder.
Tarsem, I can’t find those elements in the style.css file. Are you sure we’re talking about the same theme? For me line 171 is in the alignment classes.
Forum: Themes and Templates
In reply to: table cell text alignmentAh ok, got it:
<td style=”text-align:left”>
thanks!
Forum: Themes and Templates
In reply to: table cell text alignmentOK, so if I put
td, th { text-align: center }
in the CSS file, that seems to work. But <td text-align=”center”> in the post itself still has no effect. And I need to have some cells left-aligned and others center-aligned, so just one global setting isn’t enough. Any idea what’s going on?
Forum: Themes and Templates
In reply to: table cell text alignmentThanks but I think I’m doing that. Doesn’t work in CSS and doesn’t even work in in-line HTML. If I write <td align=”center”>content</td> then the content is still left-aligned. Is there something wrong with that syntax?