Viewing 24 posts - 1 through 24 (of 24 total)
  • Author
    Posts
  • #245429

    Hi

    I would like to remove the top header menu and info on two pages on my site – /welcome and /welcome-back

    I would like to keep the Logo level header links to the main pages but remove the menu containing social links and contact info

    Thanks

    #245434

    Hey Coronacom!

    Please add following code to Quick CSS in Enfold theme options under Styling tab

    .page-id-1122 #header_meta { display: none; }

    You should change page ID to match your page's ID. You can right click on Chrome or Firefox to inspect elements to find page ID’s http://i.imgur.com/HyPTCRg.jpg
    Cheers!
    Yigit

    #478992

    Hi there,
    I would like to hide the main menu on a single blog post.

    I tried the css with the page id, but it does not work for posts:

    .page-id-14 .main_menu { display: none; }

    I also tried changing .page-id to .post-id, but this didn’t work as well..

    Can you give some advice please?
    Thanks!

    #479415

    Hey!

    Give us a link to the actual post. This is how you can get the correct post or page id: http://kb.oboxthemes.com/articles/how-to-get-css-styles-for-elements/

    Cheers!
    Ismael

    #479508

    Hi Ismael
    below you will find the link.

    Cheers

    #479697

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .postid-1052 nav.main_menu {
        display: none!important;
    }

    Cheers!
    Yigit

    #511353

    Hi, I would like to remove the header from a shop page.
    The usual css doesn’t seem to work in that case.
    Can you help out?

    #511374

    Hey!

    Please use following code instead

    .woocommerce.archive nav.main_menu {
        display: none!important;
    }

    Cheers!
    Yigit

    #511688

    Thanks, can you also tell me the css code if I want to hide the menu from all woocommerce pages (product, cart, checkout, ect)?

    #511954

    Hey,

    Please try the following as well:

    .woocommerce nav.main_menu {
        display: none!important;
    }

    Best regards,
    Rikard

    #512047

    Thanks, but it doesn’t work.
    Main menu is still visible.
    Do you have another alternative code?

    #512150

    Hey!

    Please try changing the code to following one

    .woocommerce-page nav.main_menu {
        display: none!important;
    }

    Cheers!
    Yigit

    #567475

    Is there a newer way to hide the main navbar on pages rather than using CSS to hide it? Also, what’s your thoughts about adding that as a variable for the “Header visibility and transparency” or create another option for hiding/showing the main menu? Do you recommend page templates for this for now?

    #568224

    Hi!

    not sure what you mean and what you are trying to achieve. No there is no other option to hide main navbar as far as I know.

    Cheers!
    Andy

    #595152

    This unfortunately doesn’t seem to be working for me. I added the code shown in private content below, and nothing changed. I’m trying to remove the header on only this one page.

    #596047

    Hi @dbtpath,

    You link redirects me to your home page, do we need to be logged in to view it? If so then please start a new thread and include admin login details in private.

    Thanks,
    Rikard

    #676057

    I want to shift my menue & logo down by 1700px in homepage inly but i cant fix this issue

    this is the code
    .page-id-734 .header-scrolled .main_menu .menu{
    top: 7px !important;
    }
    .page-id-734 #top .main_menu .menu{
    position: relative;
    top: 1700px;
    }
    .page-id-734 #top .main_menu .menu > li > a{
    height: 50px !important;
    line-height: 50px !important;
    }
    .page-id-734 .main_menu { margin-top: -30px; }
    .page-id-734 .header-scrolled .main_menu { margin-top: 0; }
    .page-id-734 .logo img { margin-top: 1000px; }
    .page-id-734 .header-scrolled .logo img { margin-top: 0; }

    .scroll-down-link {
    font-size: 150px !important;

    #676752

    Hi,

    Could you try removing #top in your CSS?

    Best regards,
    Rikard

    #759692

    Hey!

    Please try changing the code to following one

    .woocommerce-page nav.main_menu {
    display: none!important;
    }
    Cheers!
    Yigit

    Hello Yigit

    Sorry to rehash this old topic, but I figured it would have been better than opening a new thread.

    Is there a way to hide the menu on all WooCommerce pages BUT the product pages?

    Thank you,
    Alessandro

    • This reply was modified 7 years, 4 months ago by wurgi.
    #760823

    Hi,

    Please try using following code

    .woocommerce-page nav.main_menu {
    display: none!important;
    }
    .single-product nav.main_menu {
    display: block!important;
    }

    Best regards,
    Yigit

    #1107173

    Hello I need some support for my Enfold website. I want to remove the woocommerce account dashboard from the front page.

    #1107204

    Hey ChiangMaiAuction,

    On the front end? Please provide a link to the site/page in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #1219446

    Hello,

    I can’t remove menu bar in Woocommerce pages, tried with the code below:

    .woocommerce-page nav.main_menu {
    display: none!important;
    }

    #1219455

    Hi @Dase,

    Would you like to remove post navigation that appears on both sides on product pages? If so, please try adding following code to bottom of Quick CSS in Enfold theme options > General Styling

    single-product .avia-post-nav {
        display: none;
    }

    If that is not what you meant, could you please elaborate on the changes you would like to make? :)

    Best regards,
    Yigit

Viewing 24 posts - 1 through 24 (of 24 total)
  • You must be logged in to reply to this topic.