How to remove a background on a specific sidebar?
-
How to remove a background on a specific sidebar?
I would like to remove a background of my sidebar log-in (contain only a body of my log-in form).
Which code that I have to use?
Here is my site: http://d-jing.com
Adding this to your child theme or custom css should do the trick:
#graphene-dynamic-widget-graphene_before_sidebar1 {
background:none;
border:none;
box-shadow:none;
}Add this as well:
php_widget-30 {
background:none;
border:none;
box-shadow:none;
}Did you try to put it in Custom CSS? Under Admin/Graphene Options/Display?
Mod
How to remove a background on a specific sidebar?
Do you mean a specific widget on your sidebar? Because I only see one sidebar.
I would like to remove a background of my sidebar log-in
The background I see there is white. Do you want it to have a different color?
contain only a body of my log-in form
Do you mean that you don’t want the border with rounded corners and a shadow (and with a pink background like your content area)?
Then try this:
#php_widget-30 .sidebar div.sidebar-wrap{
background:none;
border:none;
box-shadow:none;
}This is complicated to figure out because you have CSS coming from everywhere.
Still not thing change!
I have tried to use
.sidebar div.sidebar-wrap{
background:none;
border:none;
box-shadow:none;
}
But it change all of my sidebar, I have removed all unneeded code already, so please help me to figure out this problem.
Thanks, Best regard.
Mod
Use the entire code I provided.
Where are you putting this code?
Viewing 10 posts - 1 through 10 (of 10 total)
- You must be logged in to reply to this topic.
