NadineS Posted August 13, 2023 Share Posted August 13, 2023 (edited) https://vocalcombattechnique.squarespace.com/ PW: combat Anyone know why this code isn't rotating my scrolling block? It did when I first added it, but now it's stopped working... /* ROTATE SCROLLING BLOCK */ #block-yui_3_17_2_1_1691344183651_96460 {transform: rotate(-4deg)} Edited August 13, 2023 by NadineS layout fixes Link to comment
Solution Lesum Posted August 13, 2023 Solution Share Posted August 13, 2023 (edited) @NadineS Here's the correct code: .fe-block-yui_3_17_2_1_1691344183651_96460 { transform: rotate(-4deg) !important; } Edited August 14, 2023 by Lesum NadineS 1 If my comments were useful, please like or mark my solution as answer so others can scroll to it quickly. Sam Web Developer & Digital Designer ☕ Did you find my contribution helpful? Buy me a coffee? Link to comment
creedon Posted August 14, 2023 Share Posted August 14, 2023 (edited) Did you change the animation effect recently? The animation effect has a transform already on the block with !important on it. You will need to add !important to your CSS property value pair to override the animation effect. /* ROTATE SCROLLING BLOCK */ #block-yui_3_17_2_1_1691344183651_96460 { transform : rotate( -4deg ) !important; } Let us know how it goes. Edited August 14, 2023 by creedon NadineS 1 Find my contributions useful? Please like, upvote, mark my answer as the best ( solution ), and see my profile. Thanks for your support! I am a Squarespace ( and other technological things ) consultant open for new projects. Link to comment
Web_Solutions Posted August 14, 2023 Share Posted August 14, 2023 Just replace the code with the code below. /* ROTATE SCROLLING BLOCK */ .fe-block-yui_3_17_2_1_1691344183651_96460 { transform: rotate(-4deg) !important; } Kobir and NadineS 2 If my comments are useful, please like and mark my solution as answer. It will encourage me. Thanks MD Rofik Website Designer and Digital Marketer ☕Am I helpful? Want to offer me a coffee? ✉ Send me a message if needed any help. I'll try to reply as soon as possible. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment