Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #945960

    Hi guys
    I need to create a single page (for landing page) in an existing website, with the logo in the middle, no menu, no burger menu, no header meta menu.
    I added in rapid css:
    1) .page-id-1625 .main_menu {display: none; } – it works
    2) .page-id-1625. Av-burger-menu-main {display: none; } it does not works
    3) .page-id-1625 #header_meta {display: none; } it works, but it creates a space under the header (of the same height as the header-meta)

    Can you help me
    Thanks

    #946795

    Hey macagima,

    1. Glad it works!

    2.

    
    @media only screen and (max-width: 767) {
     #top.page-id-1625 #header .av-burger-menu-main {
        display: none!important;
    }}
    

    3. Adjust the margin-top value

    #top #main {
    	margin-top: -140px;
    }

    If this does not help please provide a precise link to the page, showing the elements in question? We need to be able to inspect them in order to help :)

    Best regards,
    Vinay

    #946819

    3) you can set the top bar via functions.php of child theme:

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header) {
    	if(is_page(1625)){
    		  $header['header_topbar'] = '';
    	}
    	return $header;
    }

    a display none is not displayed but allthough it is in the source-code

    #947656

    Hi,

    Thanks for sharing @guenni007, much appreciated :-)

    Best regards,
    Rikard

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