Enhanced Text in Shapely Parallax help.

Hi, I’m working on my website: http://davidbryercreative.com and I want to know if it’s possible to have more control over the text within the shapely widget (bold, centered, return lines etc) . I’ve added the Enhanced Text widget but I’m not sure if this is the way to go. Any help appreciated.

Thanks

Hello there,

I hope you are doing well today.

You would have to use some CSS code to edit the text.

/*Font options for gallery*/
#vimeography-gallery-4.vimeography-timber .vimeography-thumbnails figure h1 {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
}

/*Font options for the contact section*/
.image-bg h3, .image-bg h1 {
    color: #ffffff;
    font-weight: bold;
    font-size: 50px;
}

.image-bg p, .image-bg li {
    color: #ffffff;
    font-size: 20px;
}

The gallery was not centered when I viewed the page so this code can help.

/*Center the gallery*/
.vimeography-timber {
    margin: 0 auto;
}

Best Regards,
Support

That works really well, thanks.

Is there any way to add line breaks too? As in:

Producer/Director with 10 years of experience taking video projects from inception to release for global brands.
Commercial
Corporate
Animation
Branded Content

rather than one long line?

Thanks,

Hello there,

You would not be able to add line breaks but you could use the following CSS to add some padding and reduce the width f he element:

/*Padding*/
.image-bg p {
    padding-left: 100px;
    padding-right: 100px;
}

Best Regards,
Support

Thanks that works a treat.

D

Hello there,

I am glad the solution worked for you.
Please feel free to contact us again in the future regarding any other issues.

Best Regards,
Support