Hi All!
Please can someone assist me.
I am using Venture Theme and I would like to add a line break in my slideshow header on my homepage (see screenshot below).
Thanks!
Hi All!
Please can someone assist me.
I am using Venture Theme and I would like to add a line break in my slideshow header on my homepage (see screenshot below).
Thanks!
Thanks for your reply!
My title field doesn’t accept html.
I would like “FLASH SALE!” to be on the first line and “READY TO RIDE?” on the second line.
Can you think of another solution for this?
Thanks. That solution works well for desktop view.
Can you possibly assist with a solution for mobile view? See screenshot below.
Hi @guyv
This is PageFly - Advanced Page Builder. I would love to give you some recommendations
this code will work with mobile
Add this css at the bottom
Online Store->Theme->Edit code
assets->theme.scss
@media not all and (min-resolution:.001dpcm) {
@supports (-webkit-appearance:none) {
@media (max-width:767px) {
.hero-content__title {
font-size: 2.50em !important;
}
}
}
}
Hope you find my answer helpful!
Regards,
PageFly
Thanks for your reply!
It doesn’t seem to work. Please see code and screenshot below.
.hero-content__title-wrapper {
max-width: 500px;
}
@media not all and (min-resolution:.001dpcm) {
@supports (-webkit-appearance:none) {
@media (max-width:767px) {
.hero-content__title {
font-size: 2.50em !important;
}
}
}
}
please try again with just this code
Add this css at the bottom
Online Store->Theme->Edit code
assets->theme.scss
.hero-content__title {
font-size: 2.50em !important;
}
This didn’t work for desktop and mobile. See screenshots below.
Just to clarify, I would like “FLASH SALE!” to be on the first line and “READY TO RIDE?” to be on the second line for both desktop and mobile.
Thanks for your help.
Perfect! Thanks a lot!