How do I change the color of a widget border ?
-
Hello,
How do I change the color of a widget border ?
the entire border of the widget ?
Thank you
The blog I need help with is: (visible only to logged in users)
-
Hello!
You can change the border of your widgets with the following CSS code
.row .eightcol, aside .widget-wrap, td { border-color: #008000; }I’ve included an example for you using some web development tools of what it may look like:
http://pbrd.co/1w5LV4uWhereas border-color: PUTCOLORHERE
See here for more information on colors:
http://www.w3schools.com/cssref/pr_border-color.aspAlso, take note that WordPress requires a CSS upgrade to do custom jobs.
http://en.support.wordpress.com/custom-design/custom-css/If you have any other questions, feel free to post.
-
-
To change thickness you would want to add the following CSS code directly beneath your previous code:
border-width: NUMBERHEREpx;Example: border-width: 10px;
Picture to illustrate
http://pbrd.co/1w4MObG -
Oops! Forgot to add a helpful link. To learn more about border-properties see:
http://www.w3schools.com/cssref/pr_border-width.asp
- The topic ‘How do I change the color of a widget border ?’ is closed to new replies.