Title: Mobile version
Last modified: February 10, 2021

---

# Mobile version

 *  Resolved [freddyee](https://wordpress.org/support/users/freddyee/)
 * (@freddyee)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/mobile-version-126/)
 * Hi
    Is there any option to have a specific font size on the mobile version of
   my web ??

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [rpetersen29](https://wordpress.org/support/users/rpetersen29/)
 * (@rpetersen29)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/mobile-version-126/#post-14030942)
 * Hi [@freddyee](https://wordpress.org/support/users/freddyee/) there isn’t a specific
   mobile option yet, however you can solve this issue by either using `rem` instead
   of `px`, [https://css-tricks.com/rems-ems/](https://css-tricks.com/rems-ems/),
   which will allow the text to scale with the document size. Or you can use media
   queries, [https://www.w3schools.com/css/css_rwd_mediaqueries.asp](https://www.w3schools.com/css/css_rwd_mediaqueries.asp),
   do set a specific size at particular screen widths, this would go in Website 
   Custom CSS.
 *  Thread Starter [freddyee](https://wordpress.org/support/users/freddyee/)
 * (@freddyee)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/mobile-version-126/#post-14032390)
 * what would be the code using media queries ?
 *  Plugin Author [rpetersen29](https://wordpress.org/support/users/rpetersen29/)
 * (@rpetersen29)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/mobile-version-126/#post-14032441)
 * This would probably work:
 *     ```
       @media only screen and (max-width: 600px) {
         .simple-banner-text {
           font-size: 12px;
         }
       }
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Mobile version’ is closed to new replies.

 * ![](https://ps.w.org/simple-banner/assets/icon-256x256.png?rev=1198700)
 * [Simple Banner - Easily add multiple Banners/Bars/Notifications/Announcements to the top or bottom of your website](https://wordpress.org/plugins/simple-banner/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/simple-banner/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/simple-banner/)
 * [Active Topics](https://wordpress.org/support/plugin/simple-banner/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/simple-banner/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/simple-banner/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [rpetersen29](https://wordpress.org/support/users/rpetersen29/)
 * Last activity: [5 years, 4 months ago](https://wordpress.org/support/topic/mobile-version-126/#post-14032441)
 * Status: resolved