Sinn City Forum » Feed reading Blogroll

Removing spaces - and dividing into tables?

  1. Anonymous

    First of all, I would like to know, how to remove the space between title of last blogpost and time of last blogpost - if possible I would like to move it to under time of last blogpost, so there's a bigger space between two links.

    Second; is it possible to make tables, so that my first link category is in one coloumn and the second category is in another coloumn?

    [IMG]http://i158.photobucket.com/albums/t91/likila/blogroll.jpg[/IMG]

    Posted 1 year ago #
  2. Anonymous

    The url to my link page is: http://www.itsfashionbaby.dk/links/

    Posted 1 year ago #
  3. Anonymous

    Hello ifb,

    to remove the space, you would have to add a new css-rule to your theme or to the plugin's css-file:

    p.frbl_last_posttitle {
        padding-bottom: 0px;
    }

    Concerning the second question: using tables for layouting is considered as bad style. Usind css to apply float-layouts would be the better way in my opinion.

    You could try the following:

    <div class='linkwrapper'>
    <h2>Mine Favoritter</h2>
    <ul>
    </ul>
    </div>
    
    <div class='linkwrapper'>
    <h2>Danske Modeblogs</h2>
    <ul>
    </ul>
    </div>

    combined with this css-rule:

    div.linkwrapper{
    width:200px;
    float: left;
    }
    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.