Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #605396

    Hello!

    I decided to use the logo under the menu (both centered) and the header behavior “sticky”. Now, if I link to a section of the main page (e.g. #about or #contact), there is a space above the section. I think it is equivalent to the height of the logo area in the header. Is there a possibility that the section scrolls to the right position, so that it ‘touches’ the menu?

    Second question (just on mobile devices!): When I’m on my blog page and I want to go back to a section of the main page (again ‘about’ or ‘contact’), it doesn’t show the right position, but stops somewhere on the gallery on the main page. Is there a solution to fix that?

    You all are doing such great work, I’m very thankful for your brilliant theme. <3

    J.

    #605842

    Hey!

    Can you please first update the theme to the latest version (3.5.1)?

    Best regards,
    Josue

    #605889

    Done! :)

    #605897

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    #605901

    Yes

    #606484

    Hey!

    I checked the site and the logo container has been removed. How did you remove it? The calculation is off because of it.

    Cheers!
    Ismael

    #606547

    Hi Ismael,

    do you mean the av-logo-container ? Isn’t it still there?
    To get text instead of a logo image, I changed the functions.php, though.

    
    add_filter('avf_logo_final_output', 'avf_text_logo_final_output');
    
    function avf_text_logo_final_output($logo) {
    	$link 	  = apply_filters('avf_logo_link', home_url('/'));
    	$logotext = "Jail Bird";
        $logo     = "<h1 class='logo bg-logo'><a href='".$link."'>".$logotext."</a></h1>";
    	 
    	return $logo;
    }

    Regards,
    Jakob

    #607112

    Hey!

    My bad. I didn’t notice that you use the new header option. Please add this in the Quick CSS field:

    .html_top_nav_header .av-logo-container {
        height: 69px !important;
    }

    .. And this code in the functions.php file:

    add_action('init', 'ava_action_init');
    function ava_action_init() {
        global $avia;
    	$avia->options['avia']['header_custom_size'] = 10;
    	return $avia;
    }

    Adjust the “header_custom_size” value as needed.

    Cheers!
    Ismael

    #607479

    Hi Ismael!

    thank you, that works perfectly, but another problem is occuring: the active menu element / current-menu-item (black underlined) doesn’t match to the section position (you have to scroll a bit down to switch it)… Is there a solution for that, too?

    Best regards,
    Jakob

    #608657

    Hey!

    Decrease header_custom_size value. Try to set it to 0.

    Please create a change log of this modification in case you update the theme or create a child theme. http://kriesi.at/documentation/enfold/using-a-child-theme/

    Cheers!
    Ismael

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