Home › Forums › Weaver Xtreme Theme › Background color in top widget areas
- This topic has 9 replies, 3 voices, and was last updated 8 years, 3 months ago by
canoot65.
-
AuthorPosts
-
June 5, 2015 at 07:09 UTC - Views: 4 #17851
canoot65
ParticipantI have set the background color for top widget areas like the overall background, but there is “another” background which I’m not able to change. You can see it here: http://www.nordoy.net/oyablikk2-fotoalbum/wppaspec/oc1/lnnb/cv0/ab1/pt13
What I want, is to have the color of the “box” like the other background, so that only the text is visible.
June 5, 2015 at 13:14 UTC - Views: 4 #22464Gillian
ModeratorDo you want to change the dark grey background or the light grey background?
Also, a link to your site is always preferable to a picture so we can help you more easily.June 5, 2015 at 14:15 UTC - Views: 4 #22465canoot65
ParticipantSomething “terrible” has happened to my website, a lot of settings have been changed, and I don’t know how or why.
I have to try to fix the mess and come back later.
Thank you for responding anyway.
June 5, 2015 at 18:44 UTC - Views: 4 #22466canoot65
ParticipantHello again, luckily I managed to restore my site.
I want to change the background color of the text bar above the picture (I want the use the same dark color as the overall background so that only the text will be visible). http://www.nordoy.net/oyablikk2-fotoalbum/?occur=1&lang=nb&cover=0&album=1&photo=10
Also, is there a way to shrink the distance (padding?) between the picture and text bar, and the text bar and the top (edge)?
June 5, 2015 at 21:09 UTC - Views: 5 #22467scrambler
ModeratorIf you inspect the page with your browser developer tools, you will see the widget had the ID text-13
SO you can style its background and text color by adding the rule below in Main Options > FOnts & Custom > Custom CSS Rule b0x
#text-13 {brackground-color:grey;color:white;}
The space above the bar comes for the 20px top margin set on widgets in Main options > Sidebar & Layout > Individual widgets > Margin boxes
if you only want to change it for that widget, add the rule in the one mentioned above
#text-13 {brackground-color:grey;color:white;margin-top:10px;}
The space below is in the container that seems to be generated by a plugin and has a very complicated content, so you may want to check what options are available there.
June 5, 2015 at 21:39 UTC - Views: 4 #22468canoot65
ParticipantThank you so much, that’s exactly what I wanted!
One more thing, the text in the middle (above the picture) and to the right are links, but there are no “signs” that they are links – no hover color, for example (even if hover color is set under Individual Widgets). Is there something I can do about it?
I really appreciate your help!
June 5, 2015 at 23:24 UTC - Views: 5 #22469scrambler
ModeratorFirst the space above the image comes from a 38px inline style margin on the image itself
For the link color, this is because you added the color as inline style to your link, which takes precedence over the hover color.
Instead of using inline style color on your link, use the rule below like for the widget background color
#text-13 a {color:#999999;}
June 6, 2015 at 08:18 UTC - Views: 4 #22470canoot65
ParticipantThanks a lot! – everything is ok now – “except” – there is still no hover color on the links. Is there another CSS rule to fix it?
June 6, 2015 at 17:10 UTC - Views: 4 #22471scrambler
ModeratorMy bad, the rule we are adding to change the color of the widget text also overrides the default, so you do need to add a rule for the hover too
#text-13 a:hover {color:#ff6363;}
June 6, 2015 at 18:33 UTC - Views: 4 #22472canoot65
ParticipantPerfect! Thank you very much!
-
AuthorPosts
- You must be logged in to reply to this topic.