Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter drpruitt

    (@drpruitt)

    I am also trying to change the name “Category” to states in the drop down — Select Category and Show all Categories. I’m not having much luck locating those either. I’ve changed them in various places in code, but it doesn’t change on the front-end. Any help there would also be appreciated.

    Plugin Author Steven

    (@shazahm1hotmailcom)

    @drpruitt

    The width is set when Chosen (a 3rd party library to enhance drop downs) initiates. Generally the width will be a little longer than the longest item in the drop down.

    In this instance, the theme sets the dropdowns widths, globally, to 100% so this is what Chosen uses (the 100% width of the content the drop down is within).

    You can try adding this to the theme’s custom CSS area, found in the Customizer.

    #cn-cmap form.cn-form select.cn-category-select {
        width: auto;
    }

    That should override the theme’s default 100% value.

    Hope this helps!

    Plugin Author Steven

    (@shazahm1hotmailcom)

    @drpruitt

    To change the category strings you do not need to edit code. It’s actually a bit easier than that. Here’s how:

    Navigate to the Connections : Template admin page.

    Click the Customize button for the cMap template.

    The page will load with the Customizer on the left and a preview on the right.

    Click the Back arrow in the upper right of the Customizer.

    Click the Strings panel.

    Change the desired strings.

    Publish the changes and exit the Customizer.

    Hope this helps!

    Thread Starter drpruitt

    (@drpruitt)

    Thank you, sir! I was making it way too difficult! 🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Editing Category Drop Down’ is closed to new replies.