Hello,
I am using the Funiter home 5 theme, slider V3 liquid.
On the slider there are 3 text line for each image,
-
I like to set font size, font, and the position of each text.
-
On mobie the slider image cut off.
-
I like the slider to slide the images automatically.
Thanks.
site
Within this file, you will likely find code sections that output the text lines for each image. You can use CSS styles to modify the font size, font, and position of each text line. For example:
/* Example CSS for changing text styles and position */
.slider-text {
font-size: 18px;
font-family: "Arial", sans-serif;
position: absolute;
bottom: 20px;
left: 20px;
color: #ffffff;
/* Add other desired styles */
}
/* Example CSS for mobile responsiveness */
@media (max-width: 767px) {
.slider-container {
width: 100%;
}
.slider-image {
max-width: 100%;
height: auto;
}
/* Adjust other styles for mobile screens */
}