-
AuthorPosts
-
November 29, 2025 at 9:05 pm #1491953
Hi,
maybe this was already requested but i did not find it.
I am using the Logo slider. On mouse over the caption appears but i would like to have it below the image as text and always visible.
Is there a quick solution for that?or maybe another Plugin that i can use?
December 1, 2025 at 6:39 am #1491967Hey Sebastian,
Thank you for the inquiry.
That is not possible without significant modifications to the theme, unfortunately. We recommend using the Content Slider instead so you can control the content for each slider. Try manually adding an image and text for each slide.
Best regards,
IsmaelDecember 1, 2025 at 8:55 am #1491971hmm .. and idea how to build 9 icons with text below in a row and make it responsive?
No need to slide .. but using text block does not really workDecember 2, 2025 at 8:26 am #1492026Hi,
Thank you for the update.
If you want to create it manually using html, try to add this code in a text or code block element:
<div class="av-logo-row"> <div class="av-logo-item"> <img src="logo1.png" alt="Logo 1"> <span>Text 1</span></div> <div class="av-logo-item"> <img src="logo2.png" alt="Logo 2"> <span>Text 2</span></div> <div class="av-logo-item"> <img src="logo3.png" alt="Logo 3"> <span>Text 3</span></div> <div class="av-logo-item"> <img src="logo4.png" alt="Logo 4"> <span>Text 4</span></div> <div class="av-logo-item"> <img src="logo5.png" alt="Logo 5"> <span>Text 5</span></div> <div class="av-logo-item"> <img src="logo6.png" alt="Logo 6"> <span>Text 6</span></div> <div class="av-logo-item"> <img src="logo7.png" alt="Logo 7"> <span>Text 7</span></div> <div class="av-logo-item"> <img src="logo8.png" alt="Logo 8"> <span>Text 8</span></div> <div class="av-logo-item"> <img src="logo9.png" alt="Logo 9"> <span>Text 9</span></div> </div>Then use this css:
.av-logo-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; } .av-logo-item { flex: 1 1 calc(100% / 9 - 20px); display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 20px; } .av-logo-item img { width: 40px; height: 40px; margin-bottom: 8px; } .av-logo-item span { font-size: 14px; color: #333; } @media (max-width: 1024px) { .av-logo-item { flex: 1 1 calc(33.333% - 20px); } } @media (max-width: 600px) { .av-logo-item { flex: 1 1 100%; } }Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.
