• Resolved lazyym

    (@lazyym)


    First off, this plugin has solved an issue with another plugin superbly! Thanks for building it.

    I would love to style the drop down to auto fit and make the button incorporate within the form.

Viewing 1 replies (of 1 total)
  • Plugin Author Nick Halsey

    (@celloexpressions)

    The best way to style the dropdown is by adding “Additional CSS” in the customizer.

    The selectors are .list-custom-taxonomy-widget select for the dropdown and .list-custom-taxonomy-widget input[type="submit"] for the button.

    The exact styling adjustments depend on your theme and your desired appearance. Here is an example that would show the dropdown and button on the same line, full width:

    
    .list-custom-taxonomy-widget  > form {
    	display: flex;
    }
    .list-custom-taxonomy-widget select {
    	width: 100%;
    	margin-right: 1em;
    }
    
Viewing 1 replies (of 1 total)
  • The topic ‘Drop down styles/width’ is closed to new replies.