Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #314675

    Hi!

    I have two questions:
    a) Is there any way to make the search box always visible? I found a code that Ismael recommended, but I dind’t find that part in the header.php Post 212462

    b) Is there any way to make the social icons appear right next to the logo? I have the logo centered, and I was looking if there any chance to make the social icons appear at the right of the logo, instead of the right edge.

    c) For the standalone icons, can I deactivate the capital letters?

    d) I’m having an issue, some “broken image” icons are appearing above some of my images, but I don’t know why.

    Thanks a lot for your help!

    • This topic was modified 9 years, 7 months ago by odmv. Reason: Additional question
    #315029

    Hey odmv91!

    1- You can find the code in Helper-main-menu.php file inside Enfold/includes
    2- I checked your website but cannot see social icons. Please add them and let us know so we can provide you accurate custom CSS code
    3- Sure, please add following code to Quick CSS in Enfold theme options under General Styling tab

    .av_icon_caption { text-transform: none; }

    4- Please try de-activating all active plugins and check if that helps. I am assuming you do not have those images in your page content?

    Regards,
    Yigit

    #315211

    Hi there,

    Previously I had support to put two separate logo’s within the header and was given the following code to place in the functions.php file

    function after_head_image_func(){
    echo “<div class=’custom_content’></div>”;} add_action(‘ava_main_header’, ‘after_head_image_func’);

    However I need to add padding around the image to get it to sit in line with the image on the right hand side of the header.
    Can you please provide the additional code?

    Best regards
    Stuart

    #315220
    This reply has been marked as private.
    #315630

    Hey!

    1.) Please remove the modifications from the previous thread then add this on functions.php:

    add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    
    function avia_append_search_nav ( $items, $args )
    {	
    
    		if ($args->theme_location == 'avia') {
            $search_form = get_search_form(false);
    		$items .= '<li id="menu-item-searchbox">'.$search_form.'</li>';
        	}	
    		return $items;
    }

    Use this on Quick CSS:

    li#menu-item-searchbox form div {
    display: block !important;
    opacity: 1 !important;
    width: 100px !important;
    }
    
    li#menu-item-searchbox form div #s {
    width: 150px !important;
    max-width: 150px;
    }
    
    li#menu-item-searchbox {
    top: 25px;
    }
    
    #top #searchsubmit, .ajax_load {
    right: -50px;
    }

    2.) Use this on Quick CSS or custom.css to change the position of the social icons:

    #header_main .social_bookmarks {
    right: 35%;
    }

    Regards,
    Ismael

    #315815

    Hi Ismael,

    My request for help is in the same thread of that which you’ve just answered. However mine is about adding padding to the secondary header image I’m using. Can you please provide support for me also.
    Best regards
    Stuart

    #316245

    Thanks a lot Ismael! I just make some changes for the position. You can close this thread now.

    Stuart, I’ll recommend you start your own thread, that way the moderators can give a much better service. Specially if it has nothing to do with the original thread title.

    Greetings!

    • This reply was modified 9 years, 7 months ago by odmv.
Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Cutomization questions’ is closed to new replies.