- This topic has 11 replies, 2 voices, and was last updated 9 years, 1 month ago by Sakin.
-
AuthorPosts
-
July 10, 2015 at 1:32 pm #60810Hair BearMember
Please can you tell me how to reduce the height of the main menu using CSS?
Also, is there a way of removing the home page’s actual box that you write in? The bit where you go to “pages” > “home” > “edit”. I don’t need that box to show on the front page anymore, but want everything else to remain: header, slider, menu, background image and Featured content etc.
July 10, 2015 at 8:34 pm #60822Hair BearMemberI can actually leave the home page’s box if I can do the following:
Move my slider images (which are now on the right, and small) over the home page’s box – like I am showing you in this image…http://www.seanofthecongo.co.uk/wp/wp-admin/upload.php?item=492
Also, is there a way to make the home page’s box as wide as the full page?
And can I delete the wording that is ringed (on the left side of the image) without the same “Home” word becoming lost from my menu?
July 12, 2015 at 3:25 am #60868SakinKeymaster@Hair Bear: For menu height, you can adjust the passing-bottom in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:
#header-right .widget .menu a { padding-bottom: 24px; }
But, second I couldn’t check it as when I view your site, it’s all “Oops! That page can’t be found.”
July 14, 2015 at 4:25 pm #60958Hair BearMemberSakin, sorry I had to put the site in private. The menu size in now fixed, though, thank you!
Is there a way of removing the home page’s actual box that you write in? The bit where you go to “pages” > “home” > “edit”. I don’t need that box to show on the front page anymore, but want everything else to remain: header, slider, menu, background image and Featured content etc. Thanks
July 15, 2015 at 10:10 am #61012SakinKeymaster@Hair Bear: You can hide the it by adding in the following css in “Appearance => Theme Options => Custom CSS” box:
.home #main { display: none; }
July 15, 2015 at 11:05 am #61021Hair BearMemberThanks. Also need to know, for a friend with the same theme, how to move the slider images over the home page’s box – like I am showing you in this image:
Also, is there a way to make the home page’s box as wide as the full page (meaning as wide as the menu bar)?
And can I delete the wording that is ringed (on the left side of the image) without the same “Home” word becoming lost from my menu? Thanks.
July 15, 2015 at 11:47 am #61028SakinKeymaster@Hair Bear: Can you post in your friend site URL.
Basically for this, you need to build child theme. For child theme, refer to http://catchthemes.com/blog/create-child-theme-wordpress/
Then remove slider by adding the following code in your child theme functions.php
// Unhook default Adventurous functions function unhook_adventurous_functions() { remove_action( 'adventurous_before_main', 'adventurous_slider_display', 40 ); } add_action( 'init', 'unhook_adventurous_functions' );
Then you can hook it in the position you like. Like below:
//Adding Slider Image in main content box add_action( 'adventurous_content_sidebar', 'adventurous_slider_display', 40 );
Or you can simply call the function.
July 15, 2015 at 11:52 am #61029Hair BearMemberGreat, thanks. Unfortunately, like mine, his website is private whilst being built (because he has info on the site that needs to be passed by relevant people before it goes live).
July 15, 2015 at 11:55 am #61031Hair BearMemberAlso…
He wants to know if there a way to make the home page’s box as wide as the full page (meaning as wide as the menu bar)? And can he delete the wording that is ringed (on the left side of the image) without the same “Home” word becoming lost from the menu? Thanks.
July 17, 2015 at 3:04 am #61108SakinKeymaster@Hair Bear: Sorry I cannot check in before theme gets live. Tell him to make test site live.
July 22, 2015 at 4:57 am #61303Hair BearMemberSakin, instead of having a colour for the menu’s background, is it possible to upload an image? Thanks
July 24, 2015 at 6:28 pm #61462SakinKeymaster@Hair Bear: Yes, you can add image as your background. For example:
#masthead { background: transparent url("http://www.seanofthecongo.co.uk/wp/wp-content/uploads/2015/06/1-shags-oil.jpg") repeat scroll 0 0; }
-
AuthorPosts
- The topic ‘Menu Height & Home Page Removal’ is closed to new replies.