Popular Categories not responsive in home page for mobile

This topic contains 1 reply, has 2 voices, and was last updated by  Guust 5 years, 4 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #462215

    Silvio Regis
    Expired Member
    Post count: 19

    Popular Categories is not responsive in the home page for mobile. We just see the icons but not the names as we see in the search page. Look print screen. How can I have the same design in the home page as for the search page?

    #462251

    Guust
    Moderator
    Post count: 29970

    That is by design for screens less than 375px wide:

    
    
    @media (max-width: 375px) {
    .sd.home .cat-link, .sd.sd-location .cat-link {
       display: none; 
    }

    So you can change that to, or add in custom CSS:

    
    
    @media (max-width: 200px) {
    .sd.home .cat-link, .sd.sd-location .cat-link {
       display: none; 
    }

    or

    
    
    @media (max-width: 375px) {
    .sd.home .cat-link, .sd.sd-location .cat-link {
       display: initial; 
    }

    Thanks

Viewing 2 posts - 1 through 2 (of 2 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket