• I would like to move the text over from on top of the picture to the right side of the page and even change the font size of the smaller text. In the second parralax section Front Page I would like to darken the text and make specific words bold. Is this possible?

    Thanks in advance.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @loopster741,

    I hope you are well today and thank you for your questions.

    I would like to move the text over from on top of the picture to the right side of the page and even change the font size of the smaller text.

    You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

    Admin Area -> Appearance -> Customize -> Additional CSS

    .image-bg div[class*='col-'] {
        text-align: right;
    }
    
    .image-bg p.mb32 {
        font-size: 12px;
    }

    In the second parralax section Front Page I would like to darken the text and make specific words bold. Is this possible?

    You can darken the text using below CSS code but to make specific words bold you have to surround those words strong HTML tags.

    #shapely_home_parallax-3 p.mb32 {
        color: #000;
    }

    Best regards,
    Vinod Dalvi

Viewing 1 replies (of 1 total)
  • The topic ‘move text position in parralax section Front Page’ is closed to new replies.