Phobic78 Posted August 22, 2022 Posted August 22, 2022 Site URL: https://bettertotalk.com Hi, I'm trying to change some text size in my footer in mobile view only. For some reason none of the font-size commands seem to have an effect. Code is below (the second part) and is located in a code block within the footer itself. I added in the background-color bit just to be sure that I am referencing the correct block and it works fine so it's just the font size that has no effect. Thanks in advance! <style> @media only screen and (min-width: 601px){ #block-yui_3_17_2_1_1661168201465_60548{ position:relative; top:-6px } } @media only screen and (max-width: 600px){ #block-5457f48e1c64898f4c01{ font-size: 50% !important; background-color:red } { </style>
tuanphan Posted August 24, 2022 Posted August 24, 2022 Try adding this to Design > Custom CSS @media screen and (max-width:767px) { .fe-62e6c5861df8fc47dd4cde1b * { font-size: 12px !important; } } 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!)
Phobic78 Posted August 24, 2022 Author Posted August 24, 2022 5 hours ago, tuanphan said: Try adding this to Design > Custom CSS @media screen and (max-width:767px) { .fe-62e6c5861df8fc47dd4cde1b * { font-size: 12px !important; } } Thanks @tuanphan, this does change the font size, but it is applying it to the entire footer. I am trying to change only the 'better to talk' text, which is block id: #block-5457f48e1c64898f4c01 Also, is there any particular reason why this should be in custom CSS, rather than embedded in a code block in the footer itself? Thanks!
Solution tuanphan Posted August 26, 2022 Solution Posted August 26, 2022 On 8/24/2022 at 9:30 PM, Phobic78 said: Thanks @tuanphan, this does change the font size, but it is applying it to the entire footer. I am trying to change only the 'better to talk' text, which is block id: #block-5457f48e1c64898f4c01 Also, is there any particular reason why this should be in custom CSS, rather than embedded in a code block in the footer itself? Thanks! #1. Use this new code @media screen and (max-width:767px) { div#block-5457f48e1c64898f4c01 * { font-size: 12px !important; } } #2. Both are same. But add to Custom CSS will be easier to manage/edit in the future. 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!)
Phobic78 Posted September 16, 2022 Author Posted September 16, 2022 On 8/26/2022 at 10:18 AM, tuanphan said: #1. Use this new code @media screen and (max-width:767px) { div#block-5457f48e1c64898f4c01 * { font-size: 12px !important; } } #2. Both are same. But add to Custom CSS will be easier to manage/edit in the future. Thank you!
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment