Title: Remove sidebar widget border
Last modified: August 21, 2016

---

# Remove sidebar widget border

 *  Resolved [Alexander0001](https://wordpress.org/support/users/alexander0001/)
 * (@alexander0001)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/)
 * Hello,
 * I try to remove the border of the widgets in my sidebar. But by setting the border
   to ‘0px’ or ‘none’, the whole sidebar is disabled. Could anybody help me, by 
   telling what I should do to remove the borders. It is about the website [http://www.latour-lith.nl](http://www.latour-lith.nl)
 *     ```
       .sidebar .block {
       	float: left;
       	margin-bottom: 10px;
       	/*border-left: 1px solid #E3E3E3;
       	border-top: 1px solid #E3E3E3;
       	border-right: 1px solid #E3E3E3;
       	border-bottom: 1px solid #E3E3E3;*/
       	border-radius: 8px 8px 0 0;
       	-moz-border-radius: 8px 8px 0 0;
       	-webkit-border-radius: 8px 8px 0 0;
       ```
   

Viewing 15 replies - 1 through 15 (of 15 total)

 *  [SiRa-wp](https://wordpress.org/support/users/sira-wp/)
 * (@sira-wp)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526814)
 * Hey,
    I’ve got no idea, why setting border to ‘none’ should disable the sidebar.
   But why not set border colour to white ‘#FFF’?
 *  Thread Starter [Alexander0001](https://wordpress.org/support/users/alexander0001/)
 * (@alexander0001)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526815)
 * Tried that as well, but that disables the sidebar too.
 *  [salsaturation](https://wordpress.org/support/users/salsaturation/)
 * (@salsaturation)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526818)
 * can you please reverse you changes so that sidebar show as expected
 *  [SiRa-wp](https://wordpress.org/support/users/sira-wp/)
 * (@sira-wp)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526831)
 * Alexander, I just tried your website in Firefox and there is no sidebar, while
   it does show in IE. This does not seem to be a css problem, there seems to be
   something wrong with the code for the sidebar.
 *  Thread Starter [Alexander0001](https://wordpress.org/support/users/alexander0001/)
 * (@alexander0001)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526833)
 * It should show the sidebar now, at least in explorer, chrome has some issues 
   with it at the moment.
 *  [SiRa-wp](https://wordpress.org/support/users/sira-wp/)
 * (@sira-wp)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526846)
 * Well, Chrome issues often go for Firefox, too. And this is the case here – still.
   Looking at the css everything looks ok and again: In my opinion simple color 
   change cannot break code.
 *  [salsaturation](https://wordpress.org/support/users/salsaturation/)
 * (@salsaturation)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526854)
 * Your sidebar is not displaying because the theme customisation / options area
   is outputting
 *     ```
       .sidebar .block {
       display: none;
       }
       ```
   
 * Please add this to your custom css to override it
 *     ```
       .sidebar .block {
       display: block !important;
       border: 0 !important;
       }
       ```
   
 *  Thread Starter [Alexander0001](https://wordpress.org/support/users/alexander0001/)
 * (@alexander0001)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526856)
 * salsaturation, thanks for your help. I added:
 *     ```
       .sidebar .block {
       display: block !important;
       }
       ```
   
 * Now, the sidebar does only show the first time the website is loaded. Do you 
   have any other suggestions?
 *  Thread Starter [Alexander0001](https://wordpress.org/support/users/alexander0001/)
 * (@alexander0001)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526861)
 * I’m not sure where to put the first piece of code you mention, salsaturation,
   could you ellaborate on that? Thanx you.
 *  [salsaturation](https://wordpress.org/support/users/salsaturation/)
 * (@salsaturation)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526863)
 * All you need to put in you custom css or child theme. If you don’t already have
   a child theme or a custom.css you should install a plugin like [custom CSS plugin](http://wordpress.org/plugins/custom-css-manager-plugin/)
   then add the following to the custom css area.
 *     ```
       .sidebar .block {
       display: block !important;
       border: 0 !important;
       }
       ```
   
 * Sorry in my previous answer I edited the code a few seconds afterwards
 *  Thread Starter [Alexander0001](https://wordpress.org/support/users/alexander0001/)
 * (@alexander0001)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526867)
 * It works! Thank you salsaturation, really appreciate it!
 *  Thread Starter [Alexander0001](https://wordpress.org/support/users/alexander0001/)
 * (@alexander0001)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526869)
 * It does only work in chrome now, not IE and Firefox. Do you have any idea about
   this?
 *  Thread Starter [Alexander0001](https://wordpress.org/support/users/alexander0001/)
 * (@alexander0001)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526876)
 * Never mind, it does work in IE and Firefox as well.
 *  [salsaturation](https://wordpress.org/support/users/salsaturation/)
 * (@salsaturation)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526878)
 * you’re welcome… don’t forget to mark the topic as resolved
 *  Thread Starter [Alexander0001](https://wordpress.org/support/users/alexander0001/)
 * (@alexander0001)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526881)
 * Resolved!

Viewing 15 replies - 1 through 15 (of 15 total)

The topic ‘Remove sidebar widget border’ is closed to new replies.

## Tags

 * [sidebar border](https://wordpress.org/support/topic-tag/sidebar-border/)

 * 15 replies
 * 3 participants
 * Last reply from: [Alexander0001](https://wordpress.org/support/users/alexander0001/)
 * Last activity: [12 years, 4 months ago](https://wordpress.org/support/topic/remove-sidebar-widget-border/#post-4526881)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
