[Resolved] Mobile View Sections

Home Forums Support [Resolved] Mobile View Sections

Home Forums Support Mobile View Sections

Viewing 14 posts - 16 through 29 (of 29 total)
  • Author
    Posts
  • #335648
    johnzoro

    yeah i keep adjusting the css cos of my table debarcle, but i’m sure i’ve sorted that now

    i’ve got the gaps between positives and negatives working now but is there a way to add a little padding at the top of the positives and negatives bit on mobile view

    #335713
    Leo
    Staff
    Customer Support

    Can you provide a link to your site again? Thanks!

    #336288
    johnzoro
    #336334
    Leo
    Staff
    Customer Support

    Change this CSS you’ve added:

    @media (max-width: 768px) {
        h2 {
            font-size: 25px;
        }
    }

    To this:

    @media (max-width: 768px) {
        h2 {
            font-size: 25px;
            padding-top: 10px;
        }
    }
    #336725
    johnzoro

    err how do i do that? can i just add some to custom css?

    #336880
    Leo
    Staff
    Customer Support

    Yup that should work.

    #337906
    johnzoro

    can i do it just for positives and negatives

    #337912
    johnzoro
    @media (min-width:769px) {
        .pro h2 {
            font-size: 25px;
            padding-top: 10px;
        }
    }
    

    Would this work?

    #337998
    Leo
    Staff
    Customer Support

    This would do both:

    @media (min-width:769px) {
        .pro h2,
        .con h2 {
            font-size: 25px;
            padding-top: 10px;
        }
    }
    #338263
    johnzoro

    It doesn’t seem to have changed it on mobile view and it has just made the h2 tags on desktop view smaller

    #338264
    johnzoro

    it seems to have changed the desktop pros and cons instead of the mobile ones

    #338330
    Tom
    Lead Developer
    Lead Developer

    Try this instead:

    @media (max-width:768px) {
        .pro h2,
        .con h2 {
            font-size: 25px;
            padding-top: 10px;
        }
    }
    #338332
    johnzoro

    that did it tom!

    #338334
    Tom
    Lead Developer
    Lead Developer

    Awesome 🙂

Viewing 14 posts - 16 through 29 (of 29 total)
  • You must be logged in to reply to this topic.