Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #377527

    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

    #377785

    Checking in to see if anyone has an answer for this.

    #377798

    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

    #379482
    This reply has been marked as private.
    #379489

    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

    #379508

    Works perfect. Thank you so much for your help and your very speedy reply. Love this theme and the support I receive.
    Susan

    #379510

    Hi!

    You are welcome Susan, we are always happy to help :) Let us know if you have any other questions or issues

    Best regards,
    Yigit

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Move text up on main page’ is closed to new replies.