Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: I’d like to move the tabs

It is defined in style.css through the following:

/* Profile Page
=================================== */

#profile-menu {
list-style: none;
position: absolute;
right: 0;
}

#profile-menu li {
font-size: 1.1em;
background-color: #eee;
padding: 4px 7px;
display: inline;
border-top: 3px double #9e9e9e;
position: relative;
top: -10px;
}

#profile-menu li.current {
background-color: #ddd;
border-top: 1px solid #9e9e9e;
}

My guess would be that you have to change the position from absolute to a margin call, but maybe someone else can give you some more hints. I am a trial and error CSS changing kind of guy….. ;)

Trent

Skip to toolbar