On my home page I have added a full width slider and then code box below it to add a background. Then I have a text box which I have two problems with.
1. I want to eliminate the space between the slider and the text.
2. I used HTML to change font color, but when I try to change size, no matter the px size I enter, I get huge text. How can I modify text size here?
Thanks.
Susan
Checking in to see if anyone has an answer for this.
Hi!
1- Please add following code to Quick CSS in Enfold theme options under General Styling tab
.home div#after_full_slider_1 .content {
padding-top: 10px;
}
2- Please do not use FONT tag, it is deprecated. Please wrap your text inside a P or DIV tag and make the changes using custom CSS code in Quick CSS field
Regards,
Yigit
Hey!
As you can see here – http://i.imgur.com/0oOmFR7.png you wrapped your text inside a FONT tag, which is deprecated. Please use DIV or P tag instead of FONT. You can give your DIV element a custom class as following
<div class="my-custom-class">here goes your text</div>
and then you can add following code to Quick CSS in Enfold theme options under General Styling tab to adjust its color and font size
.my-custom-class { font-size: 16px; color: red; }
Best regards,
Yigit
Works perfect. Thank you so much for your help and your very speedy reply. Love this theme and the support I receive.
Susan