Tagged: design, search box, social icons
-
AuthorPosts
-
September 7, 2014 at 5:25 am #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 212462b) 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 10 years, 2 months ago by odmv. Reason: Additional question
September 8, 2014 at 1:40 pm #315029Hey 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,
YigitSeptember 8, 2014 at 5:28 pm #315211Hi 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
StuartSeptember 8, 2014 at 5:39 pm #315220This reply has been marked as private.September 9, 2014 at 6:08 am #315630Hey!
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,
IsmaelSeptember 9, 2014 at 12:41 pm #315815Hi 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
StuartSeptember 10, 2014 at 4:34 am #316245Thanks 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 10 years, 2 months ago by odmv.
-
AuthorPosts
- The topic ‘Cutomization questions’ is closed to new replies.