MyBB Community Forums

Full Version: z-index of logo/css of logo
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to set the z-index of the board logo? Can't find any html handles for the css. Can't find any css either. Basically I have a "spotlight" effect that I want to show up on the background but under the logo.

The board is on my local machine as of now.

Thanks for your help.
The default theme doesn't have any CSS for the logo, but it does have a class assigned in the templates. You'll just need to add a new class to global.css

.logo {
position:absolute;
left:0px;
top:0px;
z-index:-1;
}
Edit: AJS already got it so refer to his post.

The logo has a class of ".logo" by default though it's not in the global.css file so you'll have to add it.
Thanks everyone for the timely responses. I really appreciate your help.

Just for my own reference, where in the html templates is the logo class located?
It's in the header template.

<div class="logo">
Completely missed it thanks