Log in

View Full Version : Newbie question = Title image question


Busterbunny
02-25-2011, 12:29 PM
Hi, I'm new with vBulletin (I'm a former PHPbb user).

I want to have a nice logo at the top of my forum page. However, right now, I see that if I want to have a banner that stretches the whole way, or halfway to the page, I get an overlap with the user menu options.

Is there a way to take the user menu and drop it below the title image? (See attached, I'd like to move the items in the red circle to the place where the red arrow points - please disregard the actual picture I put there, it's a placeholder)

Alternatively, how would you prevent both from overlaping? Any other trick?

Cheers and regards,
BB

Lynne
02-25-2011, 04:33 PM
You can add this to your additional.css template:
.toplinks {
position: relative;
clear: both;
float: left;
}
You'll probably want to add padding or a margin or something, so add that there too.

Busterbunny
02-25-2011, 07:12 PM
All right, thanks! I'll try that.