Hi
Two questions
1) I use block 9 for displaying posts under “latest news” on home page here
As you can see it takes up too much space. What’s the best way of reducing space between the two.
2) How can i change the colour for tabs for tabbed content. Its black and white at present. Would like it to be blue like tabs on the rest of the page as well
regards
-
This topic was modified 10 years by
taneesha.
Hi
1. Unfortunately that space can’t be decreased because the row layout will be affected: http://screencast.com/t/hCQi76LT3Yp There are some restrictions when it comes to modify the main rows layout.
2. Try this css in theme panel > custom code > custom css: http://screencast.com/t/4Ot9XhEu2
.wpb_tabs li.ui-tabs-active a, .wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a:hover{
background-color: #2185dd;
}
Thanks!
Hi
thanks so much for the replies but they do not work as intended
1) I do not want to reduce the space under the slider or on its slide as you pointed in the screen cast… just want reduce the padding between post titles under the head “latest news”
The code for tabs works only as a hover – they are still displayed as black and white unless someone points their mouse at it. Need the basic tab colours to be blue
regards
Hi
Sorry about that, i forgot one css class. To change the tabs color replace the previous css with this one: The result should be like here: http://screencast.com/t/T1Tjcb7xv0
.wpb_tabs li.ui-tabs-active a, .wpb_content_element .wpb_tour_tabs_wrapper .wpb_tabs_nav a:hover,
.wpb_tabs li a{
background-color: #2185dd;
}
.ui-state-default a, .ui-state-default a:link{
color: white;
}
Thanks!