B Bimble Active member Jun 11, 2019 #1 If we add the following to extra.less it resizes the title for both desktop and mobile view: Code: .p-title-value { font-size: 27px; } Is there a way to limit it so that it doesn't alter the mobile 20px size?
If we add the following to extra.less it resizes the title for both desktop and mobile view: Code: .p-title-value { font-size: 27px; } Is there a way to limit it so that it doesn't alter the mobile 20px size?
Pacco Member Jun 12, 2019 #2 Bimble said: Is there a way to limit it so that it doesn't alter the mobile 20px size Click to expand... CSS: .p-title-value { font-size: 27px; @media (max-width: @xf-responsiveNarrow) { .p-title-value { font-size: 20px; } } Upvote 0 Downvote
Bimble said: Is there a way to limit it so that it doesn't alter the mobile 20px size Click to expand... CSS: .p-title-value { font-size: 27px; @media (max-width: @xf-responsiveNarrow) { .p-title-value { font-size: 20px; } }
B Bimble Active member Jun 12, 2019 #3 Thanks - had to put !important after the 20px - but worked a treat. Upvote 0 Downvote