Results 1 to 5 of 5

Thread: Help me modify those spaces

  1. #1
    Join Date
    May 2005
    Posts
    52
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Arrow Help me modify those spaces

    Here is my website, you can get the SOURCE to check out everything:
    http://triple-h.blogspot.com/

    I want to remove - or at least be able to modify - the spaces that appear between 0 comments phrase and the next yellow rectangle of title. I couldn't find it at all in the source.

    Thanks a lot for any help

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    OK, here is a typical section of code covering what you are talking about:

    Code:
    <p align="left" class="byline">
    posted by Dr Haisook at <a href="http://triple-h.blogspot.com/2005/09/i-want-nokia-9300.html" title="permanent link">10:29 AM</a><br>
    
    <a href="http://triple-h.blogspot.com/2005/09/i-want-nokia-9300.html#comments">0 comments</a>
     <span class="item-control admin-463590881 pid-1049113626"><a style="border:none;" href="http://www.blogger.com/post-edit.g?blogID=14989221&amp;postID=112576858400668006&amp;quickEdit=true" title="Edit Post"><span class="quick-edit-icon">&nbsp;</span></a></span></p>
    
    <!-- START COMMENTS -->
    
    <!-- END COMMENTS -->
    
    <br><br><br>
    
        
      <h2 class="blogdateheader">Friday, September 02, 2005</h2>
    The part in red are the empty lines you are talking about. Take them out or make less of them or put something else there if you prefer. This will probably need to be done in the configuration or in a template file. Read the documentation for the blog for details on that.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    May 2005
    Posts
    52
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    A big "Thank you" !

    Could you please tell me how to modify the space between the date and the yellow rectangle ?

    thanks again..
    Last edited by Haisook; 09-03-2005 at 10:28 PM.

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    In the style section add a negative bottom margin for this:
    Code:
    .blogdateheader {
             text-align: center;
    	font-size: 8pt;
    	color: #404C53;
    	letter-spacing: 6px;
                 margin-bottom: -10px;
    }
    That will make the sapce less, adjust as desired. However, I'd just like to say that the spacing looks good to me as is.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  5. #5
    Join Date
    May 2005
    Posts
    52
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks again!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •