• Resolved justahumblewpuser

    (@justahumblewpuser)


    I am working on a site that seems to look just fine when viewed on desktop, however, when viewing on mobile, the “1” under the “how we work” section seems to be smaller than the “2” and “3”. I have looked into the text style a bit but can’t seem to find any reason why it is any smaller. Any help to fix this would be much appreciated! Thank you!

    – Just a humble WordPress user

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • lisa

    (@contentiskey)

    I suggest contacting the theme creator for guidance on the proper adjustment to CSS to fix the issue for small device display.
    https://themeforest.net/item/jupiter-multipurpose-responsive-theme/5177775

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    @justahumblewpuser That’s a design decision either by you or your theme developer, added to your “Additional CSS” part of the dashboard:

    
    @media only screen and (max-width: 767px) {
    #fancy-title-3 { font-size:32px!important; line-height:36px;}
    
    #fancy-title-6 {font-size:32px!important; }
    #fancy-title-23 {font-size:32px!important; }
    .five-columns.vc_row .vc_col-sm-2 {width:100%;}
    #box-icon-15 .icon-box-title {font-size:30px!important;}
    
    }
    

    You have this code in your css twice

    @media only screen and (max-width: 767px)
    #fancy-title-6 {
          font-size: 32px!important;  
    }

    removing it seems to fix the problem. I think both of them are defined in your custom css. You will have to remove both of them because they are the same. You can look at the code in the chrome’s inspector.

    • This reply was modified 5 years, 7 months ago by mrtom414.
    Thread Starter justahumblewpuser

    (@justahumblewpuser)

    Thank you for your help! I will adjust accordingly.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘I cannot seem to figure out why one title is smaller than all of the others.’ is closed to new replies.