• Hi,

    can anyone help me remove the default formatting on the search box at the top of my site.

    I believe that it is a UL that is currently the issue.

    I tried adding the code below but this did not work (i suspect because my themes functions.pho doesn’t declare wp_nav_menu)

    <?php
    function my_wp_nav_menu_args( $args = '' ) {
    	$args['container'] = false;
    	return $args;
    }
    add_filter( 'wp_nav_menu_args', 'my_wp_nav_menu_args' );
    ?>
Viewing 2 replies - 1 through 2 (of 2 total)
  • When you say “remove the default formatting on the search box,” do you mean the CSS style used for the search box?

    The code you posted is for Removing the Navigation Container.
    Can you post the url to your site?

    Thread Starter ninjaninja

    (@ninjaninja)

    Hi,

    sorry the link to my blog is https://ninjaninja.co.uk/test/

    When i put a search box anywhere in my site (aside from the sidebar) it is put in a ul tag with a bullet point

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing UL from search from’ is closed to new replies.