[Resolved] How to style the page navigation

Home Forums Support [Resolved] How to style the page navigation

Home Forums Support How to style the page navigation

Viewing 5 posts - 16 through 20 (of 20 total)
  • Author
    Posts
  • #992135
    David
    Staff
    Customer Support

    Thanks Syed – really appreciate you sharing your code!

    #992206
    Syed Hussaini

    Dear David,

    Can you please help me with the making it look good on mobile devices as the text is the title bleeds out when on mobile. I tried @media query but had no luck. The navigation (Next/Prev) looks great on desktop and Tablet, however, not on mobile.

    Page link.

    I am looking forward to hearing from you soon.

    Best Regards,
    Syed H | My Blog

    #992571
    Tom
    Lead Developer
    Lead Developer

    Would something like this work?:

    @media (max-width: 768px) {
        .post-navigation a {
            height: auto;
        }
    }

    Let me know ๐Ÿ™‚

    #992628
    Syed Hussaini

    Dear Tom,

    Thank you for the helpful code. It worked very well. I just extended it as follows to suit the smaller screens:

    @media (max-width: 768px) {
        .post-navigation a {
            height: auto;
    			font-size: 16px;
        padding: 5px;
        }
    }
    #993053
    Tom
    Lead Developer
    Lead Developer

    Glad I could help ๐Ÿ™‚

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