Savgordon Posted February 12 Posted February 12 Hey all! I used the below code I found online to rotate a small section of text in the footer of a site I am working on. However, I need to UNDO the rotation on mobile for it to look right and can't figure out how to update the code to revert back on mobile. #block-yui_3_17_2_1_1707432821850_197215 { transform: rotate(-90deg);} Here's the site: https://ladybug-seahorse-5wtx.squarespace.com/ Password: KOKO2024 Thank you!!
Solution tuanphan Posted February 15 Solution Posted February 15 You can change code to this to make it run on desktop only @media screen and (min-width:992px) { #block-yui_3_17_2_1_1707432821850_197215 { transform: rotate(-90deg);} } 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