View Single Post
Old 09-09-2010, 08:07 AM   PM User | #1
musicforte
New Coder

 
Join Date: Aug 2010
Location: Illinois
Posts: 20
Thanks: 1
Thanked 1 Time in 1 Post
musicforte is an unknown quantity at this point
Cool css trouble - trying to align horizontally

I'm modding a phpbb forum, and I can't get the pagination links to layout correctly.

They are stacking vertically, when they should be going horizontally.

A page example is here.


And the css that applies to it is:
Code:
/* Horizontal lists
----------------------------------------*/
ul.linklist {
    display: block;
    margin: 0;
}

ul.linklist li {
    display: block;
    list-style-type: none;
    float: left;
    width: auto;
    margin-right: 5px;
    font-size: 1.1em;
    line-height: 2.2em;
}

ul.linklist li.rightside, p.rightside {
    float: right;
    margin-right: 0;
    margin-left: 5px;
    text-align: right;
}

ul.navlinks {
    padding-bottom: 1px;
    margin-bottom: 1px;
    border-bottom: 1px solid #FFFFFF;
    font-weight: bold;
}

ul.leftside {
    float: left;
    margin-left: 0;
    margin-right: 5px;
    text-align: left;
}

ul.rightside {
    float: right;
    margin-left: 5px;
    margin-right: -5px;
    text-align: right;
}
I'm hoping someone can help me with this. I'm going nuts.
musicforte is offline   Reply With Quote