The site has three different sliders. For two of the sliders the fonts, excerpt line height, and block title colors can be selected in the Newsmag theme panel or in the slider settings.
For the “Posts Slider”, the Blocks/Widgets settings in the Newsmag panel seem to have little effect on the appearance of this slider. I’m looking to adjust the appearance of the slider. Is there a way to do that?
Thanks,
Hello awtown,
The Posts Slider is an element in Visual Composer and you can set in only from Visual Composer, like this http://screencast.com/t/t4mxkG69nyE
I do not understand very well to what effect you mean more exactly. Please provide more details about what you want to change, so I can be able to provide a more accurate response.
If you want to change the structure of the Posts Slider, it is necessary to alter the code of this and it is custom work. If you are not aware how to do this, I consider hiring a freelancer/developer to do this for you, because we cannot provide custom work at the moment, sorry!
Thank you for the message!
You can take a look at this page: helpuconquer.com
In the left-hand column, the third element down is the Posts Slider element that I mentioned previously. You can see the block title “College” is smaller than the block title of the element two posts above it – “Money”. They need to both be the same size as Money.
I’ve tried to change the font size and block color of the block title in VC and the theme panel. But, haven’t found where this can be done.
In addition, the title of the post in this element displays a different font than the other blocks in the column. And, the linespacing of the post excerpt needs to be expanded too.
Thanks for your help.
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/AOxrpNwKB
.wpb_gallery_slides .flex-caption .post-title{
font-size: 23px;
line-height: 24px;
margin-top: 5px;
margin-bottom: 10px;
font-weight: 600;
}
.wpb_gallery .wpb_wrapper .wpb_heading {
font-size: 25px;
}
Let us know how it goes and provide more details if this is not what you mean!
Thanks!
I pasted the code you sent into the CSS. That helped. With the code I can adjust the block title size and line height. My question is:
Is there a way to change the color of the background of the block title? The background behind “college” is currently black.
And, how can the excerpt length and line height be adjusted?
Thanks,
Hi
To change the background color for the title try this css: http://screencast.com/t/OY6pmQ1gvf
.wpb_gallery .wpb_wrapper .wpb_heading{
background-color: #AD4E4E;
}
The post slider itțs a Visual Composer built in element and excerpt for it aren’t controlled by the theme. You will have to edit the plugin’s files in order to change that. For the line-height try this css:
.flex-caption p{
font-weight: 400!important;
}
Thanks!