Need Help With Wordpress

by sirtom
3 replies
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
#wordpress
  • Profile picture of the author VegasGreg
    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.
    Signature

    Greg Schueler - Wordpress Fanatic... Living The Offline Marketing Dream...

    {{ DiscussionBoard.errors[2632812].message }}
    • Profile picture of the author Harrison Ortega
      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
      Signature
      NJ web design / NJ Web Designer. MY Wordpress portfolio. 10 years of HTML/CSS - 6 years developing professional Wordpress websites. Currently not available for services.
      {{ DiscussionBoard.errors[2633306].message }}
      • Profile picture of the author sirtom
        Hey thanks guys! Harrison especially, thanks so much for that.. It took a little bit to do, but I got it, and it was just what I needed

        I can hold my own with HTML in dreamweaver and such, but this coding is definitely above me lol. Thanks for taking the time to put that together, man.

        -Tom
        Signature
        [WSO] Fitness/Weight Loss PLR Package like you've never seen before (and outlandish reviews!) - check it out here
        {{ DiscussionBoard.errors[2635501].message }}

Trending Topics