• Resolved K

    (@kabirbd)


    If I use 2 columns its fit with both mobile and desktop screen. but if i want to use more then 2 ex. 3/4 column then mobile view looking weird.

    [tag_groups_tag_list column_count=4 include=1,2,10]

    Is there anyway to work this out, I want to use more then 2 columns in desktop and one columns in mobile devices.

    How can I do that?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Please try:

    [tag_groups_tag_list column_count=0 include=1,2,10 div_id="responsive_tag_list"]

    with the CSS (Can be added for example in the Customizer of your WP site)

    
    @media only screen and (max-width: 700px) {
     #responsive_tag_list {
      column-count:1;
     }
    }
    @media only screen and (min-width: 701px) {
     #responsive_tag_list {
      column-count:4;
      column-gap:10px
     }
    }
    

    Adjust the max/min width as you need it, or add even more conditions with “and” to increment the column count in steps.

    
    @media only screen and (max-width: 700px) {
     #responsive_tag_list {
      column-count:1;
     }
    }
    @media only screen and (min-width: 701px) and (max-width: 1000px) {
     #responsive_tag_list {
      column-count:2;
      column-gap:10px
     }
    }
    @media only screen and (min-width: 1001px) {
     #responsive_tag_list {
      column-count:4;
      column-gap:10px
     }
    }
    
    Thread Starter K

    (@kabirbd)

    Its work fine and at a same time its not perfect.

    If every column adopt same length/height it would be the perfect, but its nearly perfect now. I am not tech person at all may be some css code solve this issue. If possible check this out.

    Whatever, thankyou for again for this excellent plugin.

    With Love.
    – K

    Yes, I think that this is a question of CSS. The plugin does not set a fixed height of columns because it depends on the number of tags.

    Thread Starter K

    (@kabirbd)

    Okey no problem, not a big issue for me at least not now.

    thank you with love.
    -K

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Tag List column responsive issue…’ is closed to new replies.