- This topic is empty.
Viewing 6 posts - 1 through 6 (of 6 total)
Viewing 6 posts - 1 through 6 (of 6 total)
- The forum ‘CSS’ is closed to new topics and replies.
The forums ran from 2008-2020 and are now closed and viewable here as an archive.
Hello,
On this site http://www.pixeldesigns.nl i like to remove the logo pane background, so only the logo will stay there.
I am looking for a CSS code.
Thank you!
Br, Pascal
You mean this
.logo-pane {
background-color: #fff !important;
}
You could…but the image wouldn’t be visible as it’s black letters on a transparent background.
Yes Paulie,
When i remove this code, the logo is also gone…I looking for a solution to only have the logo on that location.
The logo is transparent…what color do you want behind it?
Don’t remove that code — @paulie_d was just pointing out the code that causes the background. You’ll probably just need to change it to this:
.logo-pane {
background-color: transparent !important;
}
This will get rid of the white background behind the logo.
.bg-color-menu, /* try removing this line too*/
.primary-menu li { /* keep this one */
background-color: #000000;
}