• Resolved extreme

    (@extreme)


    I was wondering how to prepare links view on main page of blog in two or three columns? is that possible and how? Thnx.

Viewing 2 replies - 1 through 2 (of 2 total)
  • esmi

    (@esmi)

    Assuming the links are marked up as a list with an id of #links, you could use:

    #links {
    	margin:0;
    	padding:0;
    	list-style:none;
    }
    #links li {
    	float:left;
    	width:15em;
    	margin:0 0 10px;
    	padding:0
    }

    That should give you a 3-column list.

    Thread Starter extreme

    (@extreme)

    thnx

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Blogroll – Links stuff’ is closed to new replies.