Sidebar spacing above text_widget
-
I am trying to work out how to remove the spacing above the widget_text boxes. The donate image is coded inside a widget_text box as are a few others on the sidebar.
On this site: http://www.awfw.us
This is the CSS I did for the sidebar and widgets. Any tips is appreciated. I have tried just about everything.
=========
/************************************ Widgets ************************************/ /* General Widget Styling */ .widget { position: relative; float: center; width: 100%; padding: 25px; margin-bottom: 0px; background: #fff; -webkit-border-radius: 8px; -moz-border-radius: 8px; border-radius: 8px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .widget .widgettitle { color: #33363c; font-size: 12px; font-weight: bold; width: 100%; border-bottom: 1px solid #f0f0ed; padding: 0 20px 15px 20px; margin: 0 0 20px -20px; } #content .widget .widgettitle { font-size: 16px; border: 0; padding: 0; margin: 0 0 10px 0; } #sidebar-header .widget.widget_text { padding-top: 0px; } /* Sidebar */ .sidebar { padding-top: 0; !important; float: left; width: 300 px !important; font-size: 12px; } #sidebar-left { margin-right: 0px; } .no-js #sidebar-left { margin: 0 0 0 0px; } #sidebar-right { margin-left: 0px; } #sidebar { display:none; }
-
the widgets are all styled with a 25px padding all around; overwrite that for the textwidgets by adding this to the end of the styles, or via a custom CSS plugin:
.widget.widget_text { padding: 0 25px; }if you need to make that specific to the textwidget currently at the top, use:
#text-13.widget_text { padding: 0 25px; }Hallelujah! Thank you brother.
I now want to move the Facebook box down a little.
I tried this:
#text-8.widget_text { padding: 20 25px; }
your syntax is wrong; try:
#text-8.widget_text { padding: 20px 25px; }http://www.w3schools.com/css/css_padding.asp
or:
#text-8.widget_text { margin-top: 25px; }please try to get familiar with CSS and with using a browser inspection tool like Firebug.
PS:
because you are using a commercial theme, please contact the theme’s developer for support.
this forum does not support commercial themes; http://codex.ww.wp.xz.cn/Forum_Welcome#Commercial_ProductsThanks for the help.
The topic ‘Sidebar spacing above text_widget’ is closed to new replies.