• Hi ,How can i create 1 tab ” search” in right top Homepage with enigma theme . Could you help me , please?

    Thanks you so much

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi,

    Firstly make a child theme using Plugin

    Now open main theme directory and copy header.php file and paste it into the child theme folder.

    Open header.php file in child theme folder see line 77 –

    </ul>
    				</div>
    				<?php } ?>

    replace it with the below code and save the file.

    </ul>
    					<div class="col-md-8 top-search">
    						<?php get_search_form(); ?>
    					</div>
    				</div>
    				<?php } ?>

    Now copy the below CSS code and paste it into the style.css in the child theme.

    .top-search .input-group {
        float: right;
    }

    Thanks.

Viewing 1 replies (of 1 total)

The topic ‘create tab search in Homepage’ is closed to new replies.