theproper Posted September 26, 2023 Posted September 26, 2023 Hello, I'm trying to have the Alt-Text appear on the bottom of the image when I hover. Like below. I've also included some effects on hover - it rotates several degrees on hover. Any idea if there's a way to add the alt-text to this on CSS? THANK YOU!
tuanphan Posted September 27, 2023 Posted September 27, 2023 Can you share link to the image? We can check easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
theproper Posted October 2, 2023 Author Posted October 2, 2023 This is the link! https://www.osires.co/words Thank you!
tuanphan Posted October 3, 2023 Posted October 3, 2023 You mean Initial: hide title under image Hover on image: show title under image ? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
tuanphan Posted October 21, 2023 Posted October 21, 2023 Try this to Website Tools (under Not Linked) > Code Injection > Footer (for first image, If it works, I will give guide for other images) <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script> <script> $('.fe-block-5aa17825ebb3f929e35b').hover(function(){ $('.fe-block-yui_3_17_2_1_1695729662197_6283').addClass("show"); }, function(){ $('.fe-block-yui_3_17_2_1_1695729662197_6283').removeClass("show"); }); </script> <style> /* hide first text */ .fe-block-yui_3_17_2_1_1695729662197_6283 { opacity: 0; } .show { opacity: 1 !important; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
theproper Posted October 23, 2023 Author Posted October 23, 2023 Hi! Thank you for this! Just tried it and it made the image disappear on load & it only appears when I hover over the area. No sign of the alt text as well.
tuanphan Posted October 26, 2023 Posted October 26, 2023 On 10/23/2023 at 7:49 PM, theproper said: Hi! Thank you for this! Just tried it and it made the image disappear on load & it only appears when I hover over the area. No sign of the alt text as well. So this is not what you want? " it made the image disappear on load & it only appears when I hover over the area" Can you describe what you want? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
theproper Posted October 26, 2023 Author Posted October 26, 2023 Yes - Initial: Hide title (copy) under image Hover on image: to reveal title under image Right now, the image is what disappears not the title. And image only shows when I hover over the area.
tuanphan Posted November 4, 2023 Posted November 4, 2023 On 10/27/2023 at 10:01 AM, theproper said: Yes - Initial: Hide title (copy) under image Hover on image: to reveal title under image Right now, the image is what disappears not the title. And image only shows when I hover over the area. Can you keep this line? I can test code again easier Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment