Filterable portfolio alignment

edited April 2017 in Portfolio

Hi,

I've got two questions :)

1. Is it possible to change the alignment of the filter-categories. Using a mobile device the alignment is set to left, but it would look much better, if it could be centered. Just like the view on a desktop computer.

2. Can i change the order of the filter categories manually? The appearance is in an alphabetical order, but it would be great, if i could organize it in my own personal order.

Here's the link to the page www.bartoszgalus.de

Greetings, Bartosz

Comments

  • Hi,
    The order is not changable but the centering is possible with this custom css :
    @media (max-width:767px) {
    .style-simple #Filters .filters_wrapper ul li {
    width: 100% !important;

    }
    }
  • edited April 2017

    Great. Looks much better! :)

    Is it possible to downsize the underline, which appears under a highlighted categorie? So that the length would depend on the length of the marked word (using a mobile device)?

    Greeting, Bartosz


  • edited April 2017
    You can use this css
    @media (max-width:767px){
    .style-simple #Filters .filters_wrapper ul li a {
    display:inline-block !important;
    padding-bottom:5px !important;

    } }
  • edited April 2017

    Cool, it worked, and looks really nice :)

    But now i have to change the space between the categories (using a mobile device). Now they are really close together. Choosing the exact categorie is nearly impossible. Is there any solution?

    Hm...also i can't undo the changes. deleting the css takes no effect on the appereance

    :-S 
  • Clear the cache on your browser, it holds the old css in memory.
    I have edited the code in the previous post. Try this now. 
Sign In or Register to comment.