bbPress

Simple, Fast, Elegant

bbPress support forums » Requests and Feedback

I'd like to move the tabs

(3 posts)
  • Started 1 year ago by castrezana
  • Latest reply from castrezana

Tags:

  1. 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:

    http://tinyurl.com/2pm77b

    Btw, the forum it's on http://forum.omedi.net .

    Thanks.

    Posted 1 year ago #
  2. 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

    Posted 1 year ago #
  3. I changed the right to left and the value to 200 pixels. And works fine. Thank you!

    http://tinyurl.com/27aauv

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.

Code is Poetry.