MyBB Community Forums

Full Version: CSS tweeks help please
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7
I don't know if it needs to be resized or not, it depends on how you want the theme to be.
right now id like the logo to not be on the welcome block do you know how to raise that up a little?
Do you want to put the logo a little up or put the panel a little down? If the second option is fine for you, add a <br> or something after the code that I gave you, it should do the job.
That did it thanks again man
i want to edit the welcome block and have it transparent with a small border around it how do i do that?
You should keep all your questions in just one thread.

Are you talking about the panel? In your global.css you just need to edit the code of your #panel. If you don't want a background, just remove the #color of the background. Your #panel already has a border, by the way, you can change it if you want.
http://gyazo.com/ab070ff23f63fa002e6aee865e4e509a

Im talking about this and when i took the color away nothing happened
It's the #panel. Remove this:

background: #efefef;
Ok i removed that and the border now how do i change the blue font to white and the black font to grey?
You have to change the color in the #panel.

color: grey;

And for the links, add this:

#panel a:link, #panel a:visited {
    color: #FFFFFF;
}
#panel a:hover, #panel a:active {
    color: #FFFFFF;
    text-decoration:underline;
}
Pages: 1 2 3 4 5 6 7