theonetruebix
Member
Posted 1 year ago #
Since in the flow of the HTML in both content.php and single.php is the same -- in that entry-title is followed by entry-meta in each one -- how do I get the entry-meta on single entry pages to display below the entry-title the way it does on the main index page, instead of displaying *above* the entry title as it currently does on entry pages?
I'm preliminarily assuming it's some sort of CSS trickery, but rather than hurt myself looking for it, I thought someone might know where, or indeed if it's not CSS trickery after all.
Thanks.
http://wordpress.org/extend/themes/twentyeleven/
sosa3432
Member
Posted 1 year ago #
I'm also intrested in learning how to do this! Anyone out there with a suggestion?
sosa3432
Member
Posted 1 year ago #
I think I found it, try this:
.singular .entry-header .entry-meta {/*Moving down the entry-meta below the header on singular page*/
position: relative;
}
.single_post .article,
.single_post .entry-title,
.single_post .hentry { /*Moving up the article on a singular page*/
padding-top:0px;
margin-top:0px;
}