(very minimal) Styling of isotopic results

Home Forums Product Support Forums Ajax Search Pro for WordPress Support (very minimal) Styling of isotopic results

This topic contains 1 reply, has 2 voices, and was last updated by Ernest Marcinko Ernest Marcinko 4 years, 9 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #23507
    F4nt_44smarg
    F4nt_44smarg
    Participant

    Hello!
    First of all, I love the plugin, it’s super complete, totally easy to use, does everything I needed, best money I spent on a plugin in a long time!
    Other then that, a few very simple question.
    1) I’m currently displaying the results of one of my search bars as isotonic results, but I would like to add some padding to titles and excerpts. Do I just insert some custom css? Is there a correct way to target those?
    2) If I’m displaying some filtering checkboxes for categories in the frontend, is there a way to display them inline ( horizontally) instead of as a vertical list? (maybe through some custom css I guess 😀 )
    Thanks again, great plugin!

    #23518
    Ernest Marcinko
    Ernest Marcinko
    Keymaster

    Hi,

    Thank you very much for your kind words, I really appreciate them 🙂

    1. Well, depending on how do you want this one, to add generic padding, I would recommend this custom CSS:

    .asp_content {
        padding: 12px !important;
    }

    2. This might be a bit more difficult, but probably doable anyways. Try this custom CSS:

    fieldset .asp_option {
        display: inline-block !important;
        min-width: none;
        margin-left: 0 !important;
    }
    
    .asp_option_inner, .asp_option_label {
        display: inline !important;
    }
    
    .asp_option_label {
        padding: 0 12px !important;
    }
    
    .asp_select_spacer {
        display: none !important;
    }
    
    fieldset.asp_filter_tax {
        min-width: 100% !important;
    }
    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


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

You must be logged in to reply to this topic.