Customizing Sidebar
-
I would like to be able to change the sidebar to have each widget/section in a bordered area of its own. How can I do this? http://greatscotts.wordpress.com.
Any help is GREATLY appreciated!
Marissa
-
You would need to pay for the CSS upgrade and know how to use it.
Otherwise you’re stuck with choosing from the standard WP.com themes and finding whichever comes closest to what you want.
-
Well, I paid for the CSS upgrade and I sorta know how to use it. I got the border around the whole thing, but I haven’t been able to figure out how to separate into sections.
-
What theme are you using?
I think you’d need something like
.widget {
border-style=solid;
} -
-
-
-
-
-
I put in the code you gave me above, tried devblog’s recommendation as well. I’m surprised it’s not working.
-
Hmm. You didn’t change any of the details that might spoil the syntax? On devblog’s version you’d need to have put in a color code with a # in front of the 6-digit code and no square brackets.
-
Yes, I put in: .widget {border: solid 1px #0061D1;}
Not sure if that’s the exact color code I used or not, but it’s close.
-
Could you post the rest of the code you’ve used to make changes? It may be that you’ve got something else that’s overriding that.
-
-
Oh, no I see the problem. You need an = not a :
So it should be
.widget {border = solid 1px #0061d1;}
Try that.
-
-
-
-
- The topic ‘Customizing Sidebar’ is closed to new replies.