I'm a newbie on CSS, but i'm trying.
I put a logo on header and looks good, but on the profile page it appear over the tabs. How can i move the tabs? See the example:
Btw, the forum it's on http://forum.omedi.net .
Thanks.
I'm a newbie on CSS, but i'm trying.
I put a logo on header and looks good, but on the profile page it appear over the tabs. How can i move the tabs? See the example:
Btw, the forum it's on http://forum.omedi.net .
Thanks.
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
I changed the right to left and the value to 200 pixels. And works fine. Thank you!
You must log in to post.