Template Doctor - Question | JoomShaper

Template Doctor

G

Giuseppe

Template 8 hours ago

Good morning, in the Doctor template, how can I make the slide image appear on the Home page on smartphones? The site is still in production and is hosted on a temporary domain, which is: https://osteopata.giuseppecento.eu/ The Joomla version is 5.4.3 The template version is: Doctor version 3.0.1 The SP PageBuilder version is 6.3.0

0
1 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 2 hours ago #219723

Hi there!

Thanks for reaching out.

Please use the following code in your custom CSS:

@media screen and (min-width: 320px) and (max-width: 767px) {
    .sppb-section.doctor-static-hero-section {
        background-position: 70% center !important;
        background-size: auto auto !important;
    }
}

You can play with the position and size value in the above code to fit the image as per your need though.

Here is all about custom code placement in the Helix3 framework: https://www.joomshaper.com/documentation/helix-framework/helix3/custom-css-header-code

Best regards,

0