Tagged: 

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1052953

    Hi guys!

    How do I change the breadcrumb border so it doesn’t cut into the words of the actual breadcrumb on mobile?
    Right now the breadcrumb border is making a line through the text of the breadcrumb which looks messy and unprofessional.

    Please view the site on mobile to see the breadcrumb issue.

    Thank you in advance

    #1052957

    Hey Courtney,
    Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 430px) { 
    .title_container .breadcrumb {
        right: 0px !important; 
        top: 30% !important; 
    }
    #top .title_container .container {
        padding-top: 0px !important; 
        padding-bottom: 0px !important; 
    }
    .responsive #top #wrap_all .title_container .container {
        width: 100% !important; 
        max-width: 100% !important; 
    }
    }
    @media only screen and (min-width: 431px) and (max-width: 786px) { 
    .title_container .breadcrumb {
        right: 0px !important; 
        top: 30% !important; 
    }
    }

    Best regards,
    Mike

    #1053182

    Yay! It worked!

    Thank you for your speedy reply!

    #1053229

    Hi,
    Glad we could help, I assume we can close this now, but I like to ask first.
    Is there anything else we can assist with on this issue?

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.