Hello Kriesi, thank you for the very cool theme!
I would need your help for a very small detail, please: In the menu, as the LOGO already takes to the HOME page and as the space is not too big, I would like to REMOVE THE HOME MENU .
How/where to do this?
This is the site: http://www.centrumconsult.com
Thank you very much and best regards,
Markus, http://www.fizzo.ch
How to remove "HOME" in the menu?
14 posts from 4 voices-
Posted 2 years ago #
-
Hey,
you can create your own menu under Appearance > Menus. You can exclude/include pages, categories, posts and external links in your own custom menu. If you don't want to create a custom menu, you need to remove following code from lots_of_small_helpers.php located under avisio\framework\helper_functions:echo "<li $current><a href='".get_settings('home')."'>Home</a></li>";Posted 2 years ago # -
Cool, Kriesi,
danke!
MarkusPosted 2 years ago # -
Schön das ich helfen konnte. (btw bin aber nicht Kriesi sondern einer seiner Mitarbeiter)
Posted 2 years ago # -
How can I add the home title to the menu instead of using the logo, for display.
Posted 2 years ago # -
You want to remove the logo and add a home link?
You can do this via menu manager (Appearance > Menus). Just add an external link and give it any title you want. Then type in your website url in the "url" field.
To remove the logo just add following code to style.css:
#top .logo, .logo a{ display:none !important; }Posted 2 years ago # -
Hi,
I would like to put the blog title (as referred in WP Settings) next (right hand) to the logo and the blog slogan beneath (maybe in a smaller typo). Any ideas...?
Thank you!
Posted 2 years ago # -
Which theme do you use? Avisio?
Posted 2 years ago # -
Oh sorry, wrong support forum. I'm using habitat... :-)
Posted 2 years ago # -
In header.php replace:
<h2 class="logo <?php echo $logoclass; ?>"><a class='ie6fix' href="<?php echo get_settings('home'); ?>/"><?php echo $logo; ?></a></h2>with:
<h2 class="logo <?php echo $logoclass; ?>"><a class='ie6fix' href="<?php echo get_settings('home'); ?>/"><?php echo $logo; ?></a></h2> <br/><h2><?php bloginfo('name'); ?></h2><br/> <h3><?php bloginfo('description'); ?></h3>This will add the site name + slogan underneath the logo.
Posted 2 years ago # -
Sorry again, I meant both site name and slogan right-hand-sided to the logo (similar to your "Cubit"-theme). Your code puts them behind the logo... :-)
Posted 2 years ago # -
In header.php replace:
<h2 class="logo <?php echo $logoclass; ?>"><a class='ie6fix' href="<?php echo get_settings('home'); ?>/"><?php echo $logo; ?></a></h2>with:
<h2 class="logo <?php echo $logoclass; ?>"><a class='ie6fix' href="<?php echo get_settings('home'); ?>/"><?php echo $logo; ?></a></h2> <div class="website-slogan"> <br/><h2><?php bloginfo('name'); ?></h2><br/> <h3><?php bloginfo('description'); ?></h3> </div>and in style.css add following code (to the very bottom of the file):
.website-slogan{ position: absolute; left: 200px; top: 30px; }By adjusting the top and the left value you can position the website name + slogan where you want. If you increase the left value the slogan will move to the right, if you increae the top value the slogan will move towards the bottom.
Posted 2 years ago # -
It works! Great! Thank you.
Posted 2 years ago # -
Glad that I could help you :)
Posted 2 years ago #
Reply
You must log in to post.














