Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Align right “Hot Tags” section


chrishajer
Participant

@chrishajer

In style.css, you would just switch the width and position of the #hottags div and the #discussions div. Instead of what is in style.css now, you would have something like this:

#front-page #hottags {
margin-left: 610px;
width: 150px;
overflow: hidden;
}

#front-page #discussions {
position: absolute;
top: 0;
left: 0;
width: 590px;
}

That’s untested, but that’s basically the procedure. You’re just moving the tags right and the discussions left. You could do it with floats as well but it’s not done like that now.

Skip to toolbar