Forum Replies Created
-
Mod
Quote:How can I decrease the space that is above the widget title with custom CSS?.sidebar h3 {padding-top: 7px;}7px is the Graphene default, afaik. You’ll need to change it to something else.
Quote:how can I round the bottom corners of the widget?.sidebar div.sidebar-wrap {border-radius: 12px;}Change 12px to whatever looks good.
Right now, the border radius is applied to the
.sidebar h3element. The above code ensures that the top and bottom corners have the same amount of rounding.Mod
Custom CSS isn’t going to do that. The plugin is adding it to the permalink. You’ll need to check the plugin documentation and/or support forum.
If there is no way for the plugin to handle it, you’ll have to manually edit the name and permalink of each post.
Which plugin is this, btw?
Mod
You are only obligated to show the cookie consent if your server is located in the EU. I take it your is?
If so, there are a number of plugins which will handle this for you much easier than the messy way listed above, which is not for WordPress sites.
Mod
Quote:the only way he’s made it work is if he hardcodes it,Try creating a child theme, and add a modified
header.php(or whatever file he’s modding) there.Mod
In reply to: Side bar menu has disappeared on widget page WP 3.9
September 2, 2014 at 2:02 pm #43364You are not using the Graphene theme, and whichever theme you are using does not control the widgets admin page, so I’m not sure how this is a Graphene issue.
Quote:Unfortunately the developer seems to have disappeared off face of planet and does not respond to any communication.Which developer are you talking about?
Mod
Use an action hook widget area in the
top-bar.phparea.Mod
Quote:decrease the vertical spacing around my right sidebar text widget boxes.Add to custom CSS or child theme stylesheet:
.sidebar div.sidebar-wrap {
margin-bottom: 16px;
}16px is the default value; change it to something smaller.
Quote:Right now it looks like there is a line outside the widget box and between that and my image that is showing there is padded space that I want to reduce so the widgets that display ad images are closer together.I don’t see a line outside your widget box, images, or ads…..
Quote:Also is there a way to also reduce the vertical space between each widgets?See above.
Mod
Link to page where you would like this to work but it isn’t?
Mod
In reply to: Side bar menu has disappeared on widget page WP 3.9
September 1, 2014 at 10:15 pm #43362Have you edited any WordPress, theme, or plugin files?
Moved to Support.
Mod
Quote:I can’t seem to find setting to change/remove that ugly thing.There isn’t a setting. That background image is part of the master sprite image. If you use Firebug, you can figure out which element has that background, and then define a new CSS rule for it.
