Site logo

Archived topic

Seeking css help for a dropdown/ form.

3 replies · Started by Hafsa on March 16, 2020

Viewing posts 1–4 of 4

Hi,
I'm trying to place this dropdown in the last container at the very bottom (https://prnt.sc/rhbf1h). Due to some (css?) issue, the drop down keeps showing up at the very top (https://prnt.sc/rhbd8p)
Can you please help me get this in it's proper place?
Thank you SO much.

Hi there,

how is the dropdown select box generated ? As it to do how that is coded that is placing at the very top of the page content.

https://pastebin.com/9jLfbXcs
Would I need to define some class in the div and add that in the CSS later? Please advise (with details, as I'm a newbie). Thank you

Hi there,

You need to do this:

add_shortcode('countriesDropdown', 'countriesDropdown_shortcode');
function countriesDropdown_shortcode( $atts = [], $content = null) {
    ob_start();
    ?>
        Your code in here.
    <?php
    return ob_get_clean();
}
This archived topic is closed to new replies.