Search bar instead of menu bar
-
I would like to remove my menu bar and just have a search bar on the top right hand side of the page. Is that possible?
Thanks,
Marko
The blog I need help with is: (visible only to logged in users)
-
-
For corpexplore.com please. I have a custom css but not sure how to make that kind of change!
-
Marko, on Cubic, I’m afraid this isn’t possible. We could replace the menu icon with the magnifying glass search icon like this though:
.sidebar-toggle::before { content: 'f400'; font-size: 200%; font-weight: bold; width: 100px; } .sidebar-toggle { width: 100px; } -
That worked like a charm!!!!! Thanks a bunch. One more yhing – I’d like to have a text on the right hand side of my logo. Tag line is usually posted below and it always includes the site name as well which is already in my logo. Can we add something similiar to a tag line (just text) on the right hand side of the logo?
-
We will need to limit this to screens/windows 768px and wider since things go awry when narrower than that. At 767px and narrower, it will go below the logo.
@media screen and (min-width: 768px) { .site-logo-link::after { content: "This is my tagline"; position: relative; left: 100px; top: -80px; } }If you wish to adjust the color, then add this as well (not within the above, but separately).
.site-logo-link:after { color: #000; }
- The topic ‘Search bar instead of menu bar’ is closed to new replies.