Changing Post Layout
-
Mod
I still see this somewhere:
.two-col-right .post, .three-col-right .post, .two-col-right #comments ol li.comment.depth-1, .three-col-right #comments ol li.comment.depth-1, .two-col-right #commentform, .three-col-right #commentform {
border-top-left-radius: 30px;
border-top-right-radius: 0;
}It’s that “30px” that’s doing it.
I know… it definitely looks like there is some unnecessary duplications in there.
#sidebar1 div.sidebar-wrap {
border: none;
box-shadow: none;
}
#sidebar_bottom {
background: none repeat scroll 0 0 #000000;
}
#footer {
background: none repeat scroll 0 0 #000000;
}
.two-col-right .post, .three-col-right .post, .two-col-right #comments ol li.comment.depth-1, .three-col-right #comments ol li.comment.depth-1, .two-col-right #commentform, .three-col-right #commentform {
border-top-left-radius: none;
border-top-right-radius: none;
margin-top: -6px;
}
Okay, try this instead (just the bottom part of your code):
.two-col-right .post, .three-col-right .post, .two-col-right #comments ol li.comment.depth-1, .three-col-right #comments ol li.comment.depth-1, .two-col-right #commentform, .three-col-right #commentform {
border-top-left-radius: 0px;
border-top-right-radius: 0px;
margin-top: -6px;
}Soo next question, how do I place ads on my site other than inside widgets? Again to use the http://www.hervecuisine.com/ as a reference, he has ads on the top right sidebar but they don’t appear to be within any widgets. Would I simply need to put the code inside of the php page?
Mod
Add your ad code to a text widget, but leave the title section blank. That leaves off the header of the widget. I will include this when I revise my text widget tutorial.
- You must be logged in to reply to this topic.
