Sp Property Remove The Thumbs In The Bottom Of Slide Show - Question | JoomShaper
SP Page Builder 6 is Here! Learn More →

Sp Property Remove The Thumbs In The Bottom Of Slide Show

T

Torquato

Extension 1 year ago

In the Estate template, in the property details slideshow, is it possible to remove the thumbs? Is it possible to change the slide show resolution? It is now set to 1920x715

0
6 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 1 year ago #167923

Hi there!

Thanks for reaching out.

You can use the following code in your custom CSS to remove the thumbnails:

.com-spproperty.view-property .property-dots-container {
    display: none;
}

And with this you can change the height, width of the slide image:

.com-spproperty.view-property .owl-carousel .owl-item img {
    width: 500px;
    height: 300px;
    margin: 0 auto;
}

Here is all about custom code placement in Helix Ultimate: https://www.joomshaper.com/documentation/helix-framework/custom-code-css-js-meta

Best Regards

0
T
Torquato
Accepted Answer
1 year ago #167934

Thank you for the reply if i put this code

.com-spproperty.view-property .property-dots-container {
    display: none;
}

it's ok

and then if i add the follow code to my custom.css

.com-spproperty.view-property .owl-carousel .owl-item img {
    width: 500px;
    height: 300px;
    margin: 0 auto;
}

in the mobile version the image stretches

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 1 year ago #168084

Hi,

You are welcome:)

Well, Then try the following instead the previous one:

.com-spproperty.view-property .owl-carousel .owl-item img {
    width: 500px;
    height: auto;
    margin: 0 auto;
}

Best Regards

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 1 year ago #168350

Did that help?

0
T
Torquato
Accepted Answer
1 year ago #168603

all ok thanks

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 1 year ago #168616

Hello,

Thanks for letting me know about it and you are always welcome:)

You may accept the most useful answer in order to close the post.

Have a nice day!

0