Need Help With Wordpress

by 3 replies
4
Hey all,

This may be a ten-second thing, but I need help with 2 things in Wordpress. Solely for sake of getting help fixing it, here's the link so you'll know what I'm talking about: 5 Figure Blog

First: How could I change the position of the Post Title on my blog? If you'll check it out, you'll see that on the home page, if a blog title spans more than 3 lines, it dips into the left Date column. I wanted it all to the right of that.

Second: If you actually click on a blog title and view that post, you'll see a blue "Leave Comment" box partly obscuring the title. Is there any way to fix that as well?

Thanks to anyone who can help! I appreciate it

-Tom
#programming #wordpress
  • I haven't worked with that particular theme yet, but I am guessing you will need to alter some of the stylesheet settings in the CSS file. I would have to jump into the code to know for sure.

    Luckily they have a great support forum at Top Blog Formula Support that probably has more exact answers for you.
    • [ 1 ] Thanks
    • [1] reply
    • Hi Tom,
      yes you need to modify some properties on your style.css file.

      So, to fix the first issue open the style.css file and find this class.
      Code:
      .entry_header h1, .entry_header h2.home {
      font-size:18px;
      height:auto !important;
      line-height:1.6em;
      margin:6px 0 0;
      min-height:40px;
      padding:5px 80px 5px 0;
      width:550px;
      
      
      }
      and replace it with this
      Code:
      .entry_header h1, .entry_header h2.home {
      font-size:18px;
      height:auto !important;
      line-height:1.6em;
      margin:6px 0 0;
      min-height:40px;
      padding:5px 5px 5px 80px;
      width:520px;
      }
      To fix the 2nd issue, find this class
      Code:
      .comment-bubble {
      background:none repeat scroll 0 0 #21A0DE;
      color:#FFFFFF;
      font-size:11px;
      font-weight:bold;
      padding:4px 12px;
      position:absolute;
      right:28px;
      top:18px;
      z-index:10;
      
      
      }
      and replace it with this
      Code:
      .comment-bubble {
      background:none repeat scroll 0 0 #21A0DE;
      color:#FFFFFF;
      font-size:11px;
      font-weight:bold;
      padding:4px 12px;
      position:absolute;
      right:12px;
      top:74px;
      z-index:10;
      }
      Harrison
      • [ 1 ] Thanks
      • [1] reply

Next Topics on Trending Feed

  • 4

    Hey all, This may be a ten-second thing, but I need help with 2 things in Wordpress. Solely for sake of getting help fixing it, here's the link so you'll know what I'm talking about: 5 Figure Blog