Okay
  Public Ticket #1566417
Portfolio categories
Closed

Comments

  •  3
    emessel started the conversation

    Dear Paul, 

    thank you very much for you support, you've been very helpful. 

    I am now wondering how to skip a line (leave a blank space), in-between two categories ?

    Having some space in-between Parures and Evolution. 


    Many thanks


    em

  •  291
    Paul replied

    You can use custom CSS like this to increase the margin between portfolio categories:

    .portfolio-categories li {
        margin-bottom: 15px;
    }
    

    A sample result after applying the code: https://cl.ly/rRDJ

  •  3
    emessel replied

    Hi Paul, 

    That's not what I want to do, rather this to use your exemple

  •  291
    Paul replied

    It uses the same concept but you would need to specify the unique element class in the custom CSS. Based on the given screenshot, you can use it like this to get that result:

    .portfolio-categories .port-term-202 {
        margin-bottom: 15px;
    }
    

    Here's the screenshot when inspecting the element on the page: https://cl.ly/rRVK

    And here's the result: https://cl.ly/rSJe

    If you would also like to use custom CSS for other elements, I recommend Developer Tools on Chrome or Firebug on Firefox to inspect the elements on the page. Then you will know which CSS selector to adjust.

    More info: https://uxbarn.com/inspecting-elements-developer-tools/