Forum Replies Created
-
Mod
Actually, you need to add a curly bracket to the end of line 197. The lack of it is preventing the rest of your code from executing properly.
Mod
Oh geez, I think I tried everything but that. Thanks! Now I have lots of time to dance.
Mod
Are you using a caching plugin? If so, try either disabling or emptying the cache and then reloading the page.
Mod
You need semicolons between your declarations, not commas (or nothing!). See this page:
http://www.w3schools.com/css/css_syntax.asp
for proper syntax.
So, cleaning up your code a bit, you should try:
.post-title,
.post-title a,
.post-title a:visited {
border-bottom: 1px solid #e3e3e3;
font-size: 200px;
font-family: Trebuchet, Trebuchet MS, Arial, sans-serif;
padding-bottom: 5px;
text-align: left;
}See how that works.
(You should enter code between backticks btw.)
Mod
Josh, I just need to take a long weekend and reread a lot of your posts. Then I might get a better handle on the nav menus. And no matter what I do, I just can’t get rounded corners on my footer widgets…but it’s just a matter of time.
Mod
Mod
In reply to: AdSense LeaderBoard type not fitting in content width
October 30, 2011 at 7:36 pm #19179Unfortunately, there isn’t a lot you can do about this. Google exercises a lot of control over their ad sizes and don’t really allow you to change them. The only real option is to choose a smaller ad size (such as a 468×60 banner) to display beneath your posts, or to go a single column display in Graphene.
The other option would be to use an action hook to display your leaderboard at the top and bottom of the page. A bit of work, but not entirely difficult.
Ken
Mod
Although, I think the last entry in the stylesheet should take priority over anything above it.
Yep, this is correct. So
p {font-size:10px;}
p {font-size:40px;}
p {font-size:100px;}will make all your paragraph text be 100 pixels tall.
Mod
Really? Where are you entering that code? It worked on my test blog: http://test.kjodle.net/blog/2011/09/20/this-is-a-sticky-post/
Mod
Moved to Support. Please be sure to post in the correct section.
Try this code:
.post-title a {font-size:80px;}Should do the trick.
You can take a peak at my stylesheet through this link. I need to clean it up a little (so caveat emptor!), but it might give you some additional clues about how to change things.
