Eileen Starbuck 0 Report post Posted May 9, 2012 I can't seem to figure out how to change the height of tag in my blog. I just want to reduce the height a bit. I've tried: .h1 a { font-size: medium; } ...but that doesn't seem to work. Advice? "...learning, growing and sharing online!" http://www.everythingeileen.com Share this post Link to post Share on other sites
wonderwoman 0 Report post Posted May 9, 2012 I've always had success using code like this in the custom code section of the pagelines/platform pro section: h1, h1.pagetitle { font-size: 2em; } h2 { font-size: 1.5em; } h3 { font-size: 1.25em; } is it just a case of having the dot in front of the h1? Share this post Link to post Share on other sites
Eileen Starbuck 0 Report post Posted May 9, 2012 No...I try with the (dot) and without. I tried you're code (changing the 'em') and still nothing. "...learning, growing and sharing online!" http://www.everythingeileen.com Share this post Link to post Share on other sites
wonderwoman 0 Report post Posted May 9, 2012 Is it your article titles? h1, .fpost .entry-title { font-size: 100%; } If I'm on the wrong track, can you give a link to a page with the issue? Share this post Link to post Share on other sites
Danny+ 1,327 Report post Posted May 9, 2012 Hi, If you're referring to your post titles, then try adding this to your custom CSS. [code]h1, .fpost .entry-title { font-size: 200%; } [/code] Lower the 200% value or change it to something like 20px, 2em etc... until you get the desired look. Please search our forums, before posting! Share this post Link to post Share on other sites
Eileen Starbuck 0 Report post Posted May 9, 2012 Perfect! Thx. "...learning, growing and sharing online!" http://www.everythingeileen.com Share this post Link to post Share on other sites