-
AuthorPosts
-
May 28, 2023 at 7:45 am #1408842
Hi there,
I’d like to have a numbered icon-list with a different color (different fill and stroke color as well) for every icon.
pls See example pic and icon list…
June 1, 2023 at 6:09 pm #1409297Hey Nomad,
Thank you for your patience and the link to your site, I assume that you want them to look like this without the white dot in the center and the dashed horizontal line:
I see that your icon list has a custom class #Ablaufschritte so to change each one try this css:#top #Ablaufschritte.avia-icon-list-container li:first-child .iconlist_icon { background-color: #ffffff; color: #930f1a; } #top #Ablaufschritte.avia-icon-list-container li:nth-child(2) .iconlist_icon { background-color: #7f807e; } #top #Ablaufschritte.avia-icon-list-container li:nth-child(3) .iconlist_icon { background-color: #4f5150; } #top #Ablaufschritte.avia-icon-list-container li:nth-child(4) .iconlist_icon { background-color: #ac262c; } #top #Ablaufschritte.avia-icon-list-container li:nth-child(5) .iconlist_icon { background-color: #930f1a; }
You will note that I also changed the first icon list number because it didn’t show when the icon has a white background color.
After applying the css, please clear your browser cache and check.
Here is the expected results:
Best regards,
MikeJune 2, 2023 at 9:35 am #1409368Wow, Mike: Thank you!
every time there’s to learn – I appreciate that.
If you’re open for a following question:
for this responsive thing I copied the icon list element and set the second one’s [list styling] to “minimal”.
I have two issues with that:
1. redundancy – every change in terms of content has to be made on two elements…
2. font size – the smaller icons should get a smaller font size than the 24px that is set via the following code:.VuK-IconList-numbers li .iconlist-char:before { font-family: 'PT Sans', Helvetica, serif; font-size: 24px; font-weight: bold; }
Could you pls give me a hint what to do having css delivering responsive font sizes 24px for not smartphones, smaller for smartphones…
(that would solve issue #1 as well)?Again thank you!
June 2, 2023 at 9:36 pm #1409433Hi,
When I check the numbers I see that you are using css to make the font size 14px below 850px and above that they are 24px:@media only screen and (max-width: 850px) { #top .VuK-IconList-numbers li .iconlist-char:before { font-family: 'PT Sans',Helvetica,serif; font-size: 14px; font-weight: bold; position: relative; bottom: 2px; } }
Perhaps you just added this after you asked the question, but it seems to be working for me.
As for your first question, I don’t see a second icon list element, I see a hotspot element, but I thought it was only a test, perhaps if you explain further with some context and a admin login it would make more sense, but right now I think the one iconlist #Ablaufschritte element looks fine on both desktop and mobile and I would remove the hotspot element.Best regards,
MikeJune 3, 2023 at 9:35 am #1409461Again, thx Mike,
sorry, did two things the same time…
pls check the page, there’s now the second icon list (minimal style) for small screens on smartphones.
I’d like to know if/how css can change “avia-icon-list” from av-iconlist-big (with Icon Fontsize 24px) to av-iconlist-small (with Icon Fontsize 14px) on small screens so that I only need one icon list element instead of two. (I’d appreciate to learn how css can help me switching list style to minimal for small screens.) That might help me to spare the second icon list and avoid redundancy with all the fuss that comes with it.By the way: is there a list or library of all the element names (classes?) and properties available?
- This reply was modified 1 year, 5 months ago by Nomad.
June 3, 2023 at 10:26 pm #1409501Hi,
To change the big icon list into a small icon list for mobile we need to swap the class av-iconlist-big with av-iconlist-small and change the iconlist title by swaping the class av_iconlist_title with av-iconlist-small and by default the small icon list title doesn’t use a H tag it uses a plain div.
So note that in the following snippet it looks for the ID Ablaufschritte and it removes your h4 tag, so if you change the H tag in the future or your section ID you will need to update the snippet.
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function change_iconlist_big_to_small_below_tablet() { ?> <script> window.addEventListener('DOMContentLoaded', function() { (function($){ function replaceElementTag(targetSelector, newTagString) { $(targetSelector).each(function(){ var newElem = $(newTagString, {html: $(this).html()}); $.each(this.attributes, function() { newElem.attr(this.name, this.value); }); $(this).replaceWith(newElem); }); } $('#Ablaufschritte').each(function() { var width = $(window).width(); if ((width <= 767)) { $('.avia-icon-list').removeClass('av-iconlist-big').addClass('av-iconlist-small'); $('li').each(function() { $('.av_iconlist_title').removeClass('iconlist_title').addClass('iconlist_title_small'); }); replaceElementTag('h3.av_iconlist_title', '<div></div>'); } else {} }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'change_iconlist_big_to_small_below_tablet');
When you test with the Dev Tools on your desktop you will need to refresh the page after emulating a mobile device, this will work correctly on a real mobile device, and if you switch back to a desktop screen you will need to refresh again.
Since a real mobile device won’t switch the screen size in the real world there is no reason to make the code more complicated.
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.Best regards,
MikeJune 4, 2023 at 10:12 am #1409522Hi Mike,
thx for getting back.
functions.php – feels like we’re changing levels…
Thank you for all your energy you put in my quest for avoiding redundancy.
unfortunately – I couldn’t bring it to live:
first I made sure to have two icon list elements on the page – one big, one small – without any responsive settings.
If switching would work, the should look similar – on smartphone, but…
I updated functions.php as u mentioned – icon list doesn’t switch as expected.
Neither in Mac Safari Responsive Mode nor on iPhone. Pls see iPhone screenshot…Maybe I made a rookie mistake – which one?
“rookie mistake” – maybe this one:
I changed functions.php via ftp first – which didn’t work (as mentioned above)
Then again I read your post and checked appearance / editor – couldn’t find the code change I did via ftp.
So I did the change they way you wrote – and it worked the way I hoped!W O N D E R F U L – thank you, Mike!
- This reply was modified 1 year, 5 months ago by Nomad.
June 4, 2023 at 1:00 pm #1409535Hi,
I checked your page and it looks like it is working to me, I only see one iconlist with the ID Ablaufschritte and on desktop it is big:
and for mobile it is small:
On my Android mobile device it works correctly and when I test on a Windows desktop in Chrome Dev Tools emulating a mobile device the switch occurs after I reload the page, perhaps you are not testing like this? On my Android device it seems like the bottom of your page behaves with a lazy load, if you are using lazy load try disabling it.Anyways I made an example page for you to see how I did this, first I added the custom class Ablaufschritte to the Big Iconlist:
Then on desktop the iconlist shows as it’s default big list:
and on mobile it is switched to a small icon list:
Please check my page on your mobile device and your desktop device.Best regards,
MikeJune 4, 2023 at 6:49 pm #1409560Hi Mike,
it works. Thank you so much.
The last hurdle was due to my rookie mistake – as soon as I entered the code via appearance/editor, the icon list automatically switched size for small screens.
Again: wonderful, thank you!exceptional support here – for (I suppose 9!!) long years.
- This reply was modified 1 year, 5 months ago by Nomad.
June 4, 2023 at 8:55 pm #1409567Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts
- The topic ‘icon-list: change/control color for every icon’ is closed to new replies.