Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1305846

    Hi,
    I wish to display the site description in the header right in the middle of the page. How can I do that?

    Second question: how can we increase the size of the secondary menu (fonts and social icons too small)?

    Thanks for your help!

    #1306057

    Hey Patrick,

    Thanks for contacting us!

    1- You add following code to bottom of Functions.php file of your child theme (https://kriesi.at/documentation/enfold/child-theme/)

    function av_get_site_desc() {
    	$site_description = get_bloginfo( 'description' );
    	return $site_description; 
    }
    add_shortcode( 'site_desc', 'av_get_site_desc' );

    and use [site_desc] shortcode to display it wherever you want. To display it in header area, you can refer to this post – https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area and add a widget area to your header.
    If that does not help, please post a screenshot showing the changes you would like to make. You can upload your screenshots on imgur.com and post the links here :)

    2- Please add following code to Quick CSS field in Enfold theme options > General Styling tab

    
    #avia2-menu a {
        font-size: 17px;
    }
    #top .social_bookmarks li a {
        font-size: 20px;
    }
    

    Best regards,
    Yigit

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