Hi, I successfully changed the yellow colour behind Welcome to Scaramantica ( Welcome to Bite Italian Bar-Restaurant in the demo ) to an image of the Italian flag by putting a background url on line 36 of acm/hero/css/style.css in templates. The flag is fine on PCs and laptops but on mobiles is uneven. How can I have the flag looking even on mobiles
bigbroso Hi Add this code in custom css
@media (max-width: 767px){ .acm-hero .hero-heading:before { width: 100%; margin-left: -172px; }}
You can change the margin value to move it left-right side as per needs.
Ninja Thank you so much, I just varied things by using the CSS code align:center instead of toggling the margins and voila!!!!
bigbroso you are welcome!