
Originally Posted by
lat9
My take is that you're looking at changing your Bootstrap clone's header template. Perhaps someone with more in-depth CSS knowledge has another solution?
Perhaps, or even just part of the solution. For a quick switch I changed the includes/templates/bootstrap/common/tpl_header.php, by moving the code for the search bar:
Code:
<?php require(DIR_WS_MODULES . zen_get_module_sidebox_directory('search_header.php')); ?>
above
Code:
<ul class="navbar-nav mr-auto">
.
It seems to have worked in swapping their relative location, but everything was on the left.
I believe it was mentioned in an earlier post that changing that to
Code:
<ul class="navbar-nav ml-auto">
moves the links to the right.
This places each element in the location that I want them. I just want to expand the header search bar now to adjust to the empty space unused by the nav links. The image shows how the search bar appears now(above), and how I want it to appear (below). Thank you.
Bookmarks