Is there a way to have the Main Titles & Breadcrumbs remain static at the TOP of the page like I have the main menu do (which was achieved by changing code in the avia.js file utilizing code that was provided in response to another thread someone else posted)? … I’m using the “Small Fixed Header” in case you need that info. Thanks.
Hey!
Please do the following:
1.) Add this to increase the height of the logo on mobile view:
@media only screen and (max-width: 767px) {
.responsive .logo {
height: 130px;
}
}
2.) Use this to remove the gap below the layer slider:
@media only screen and (max-width: 767px) {
.responsive #main .container_wrap:first-child {
border-top: none;
height: 150px !important;
}
}
3.) Did you set a “Responsive Header Main Menu” on Enfold > Header?
Best regards,
Ismael
Hey tonyiatridis!
You can add this on Quick CSS to decrease the top padding of columns:
body .column-top-margin {
margin-top: 10px;
}
Add this to remove the underline on hover state:
a:hover, a:focus, a:visited {
outline: 0;
text-decoration: none;
}
This one for the hover color:
.experiencecaptions:hover {
color: red;
}
Regards,
Ismael
Hi Anthony!
Seems like a plugin issue to me. 35 plugins will possibly cause you an issue or two. Please post the login details here as a private reply. Deactivate all plugins first. We would like to check it after you deactivate all the plugins because we don’t want to mess with your plugin settings.
Best regards,
Ismael
Hey leomiranda92!
Edit includes > loop-index.php, find this code on line 173:
echo $content;
Below, add this code:
`$description = get_the_author_meta(‘description’, $author_id);
echo “<div class=’author_description_text'” .avia_markup_helper(array(‘context’ => ‘description’,’echo’=>false)).”>”.wpautop($description).”</div><span class=’author-extra-border’></span></div>”;`
Regards,
Ismael
Hi silviouk!
You can use the code I posted here: https://kriesi.at/support/topic/adding-slideshare-to-header-social-icons/#post-200202 – the user added a Slideshare icon to the social media area but you can use any other fontello font icon too.
Best regards,
Peter
In case that GF will ouput special classes for this settings i added this :
#top .gform_body .small { width: 25%; }
#top .gform_body .medium { width: 50%; }
#top .gform_body .large { width: 100%; }
This works for the field size problem (please integrate it in the next release).
But the Dropdown Problem isn’t solved.
This is a great theme, I just got our second one for another client.
I am having somewhat of a minor issue and was not sure if you had any suggestions on how we could fix this. I have a background image set up in the header and it shows the full name written in a Japanese style font.
However, what happens is when we go into a tablet, mobile or iphone, ipad device the logo sits right on top of the background image with the font. You can see what I mean here: http://bit.ly/1aoJxIM
Hoping someone can give me a suggestion on how to fix this because it is only an issue with the mobile devices, not sure if the logo could somehow be moved up higher or if the header image could be cropped on the right side instead of “centered”.
Hi!
You can upload the modified logoslider.php into the child theme folder. However you must add some code into the child theme functions.php file to overwrite the original parent theme code – see: https://kriesi.at/support/topic/have-easyslider-fill-up-entire-column-with-no-padding-or-margins/#post-205281
Regards,
Peter
Hi!
Please use following code to hide the sidebar on the search page – insert the code into the quick css field
#top.search .template-search{
width: 100% !important;
}
#top.search .sidebar{
display: none !important;
}
Best regards,
Peter
1) If you view this website on the iPad in vertical mode in Chrome and Safari the top Navigation disappears. Here is the link to the website: http://bit.ly/1dGktBg
Also, in relation to this problem with Safari in landscape mode the Home overlaps slightly onto the logo. In Chrome it does not overlap the logo.
I attempted to fix the padding in the vertical mode but had no luck.
Thanks!
I moved it from the bottom to the top. No dice, no change.
Any more ideas? I don’t mind a core hack if that is what is needed to make this work.
Hey naranili!
Please try to insert following code into the quick css field
#top .gform_body input[type="text"] { width: 100%; }
Best regards,
Peter
Hi!
The theme only support google fonts so none others can be loaded in at the moment to show in the styling options. See this post for loading in your font:
https://kriesi.at/support/topic/add-a-new-custom-font/#post-211526
Make sure to try that exact function before modifying it for your custom font.
The script
Regards,
Devin
Hi pako69!
Use Codestyling ( http://wordpress.org/plugins/codestyling-localization/ ) and translate the po/mo file. Install the plugin, go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and click on “Add new language”. Then select your language from the list and click the “create po-file” button. Click on “Rescan” to search for all text strings. Then click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).
If you want to add some custom text to the translation file wrap it into a __() function like
__(‘My text’,'avia_framework’)
If you want to register a new text string with WPML see: http://wpml.org/faq/getting-string-translation-to-work/
Best regards,
Peter
Hey!
Please insert following code into the functions.php file
add_filter('avf_registered_post_type_array', 'avia_remove_bbpress_post_type_options', 10, 2);
function avia_remove_bbpress_post_type_options($post_type_option, $args)
{
if(!empty($post_type_option))
{
foreach($post_type_option as $key => $post_type)
{
if($post_type == 'forum' || $post_type == 'topic' || $post_type == 'reply')
{
unset($post_type_option[$key]);
}
}
}
return $post_type_option;
}
add_filter('avia_masonry_entries_query', 'avia_remove_bbpress_post_type_from_query', 10, 2);
add_filter('avia_post_grid_query', 'avia_remove_bbpress_post_type_from_query', 10, 2);
add_filter('avia_post_slide_query', 'avia_remove_bbpress_post_type_from_query', 10, 2);
add_filter('avia_blog_post_query', 'avia_remove_bbpress_post_type_from_query', 10, 2);
function avia_remove_bbpress_post_type_from_query($query, $params)
{
if(!empty($query['post_type']) && is_array($query['post_type']))
{
foreach($query['post_type'] as $key => $post_type)
{
if($post_type == 'forum' || $post_type == 'topic' || $post_type == 'reply')
{
unset($query['post_type'][$key]);
}
}
}
return $query;
}
We’ll include this code in the next theme update.
Cheers!
Peter
You can close this topic. Thank you for all.
When hovering over a clickable image, the content under it jumps down by a couple of pixels, is there ay way to stop this? See http://www.oglecarwax.com/products/element-premium/ – watch the black footer bar as you hover over the image.
I’ve checked through the css but I can’t see anything that could be causing this.
We are seeing code in the “title” tag of the icon link. I think someone else reported this already Icon Box Title link but I don’t think the answer was correct. It is not a plug-in conflict, it is an issue in the code.
iconbox.php lines 165-169 look like this:
case 'both':
$title = "<a href='$link' title='".esc_attr($title)."' $blank>$title</a>";
$display_char_wrapper['start'] = "a href='{$link}' title='".esc_attr($title)."' {$blank}";
$display_char_wrapper['end'] = 'a';
break;
As you can see the $title variable in 166 gets assigned the string and then you use that same variable in the “title” tag again in line 167. You are expecting to grab the value passed to the function but you are actually getting the reassigned value of $title. And that is what we are seeing.
I simple modified the code to look like this:
case 'both':
$mytitlecopy = $title;
$title = "<a href='$link' title='".esc_attr($title)."' $blank>$title</a>";
$display_char_wrapper['start'] = "a href='{$link}' title='".esc_attr($mytitlecopy)."' {$blank}";
$display_char_wrapper['end'] = 'a';
break;
I’m not sure that’s the best way to fix it but it worked for me. BTW, great work on the template it.
I am using Enfold version 2.4.5 and WP 3.8
The Top Navigation is NOT being displayed on “Search Results” page.
===============
Please see…
http://www.healthnumeric.com/V2/?s=lorem
and compare to…
http://kriesi.at/themes/enfold/?s=lorem
==============
Please help.
-
This topic was modified 12 years, 2 months ago by
turner2f.
Hi!
Where in your functions.php file did you add the new filter? If its at the top, put it at the bottom and if at the bottom put it at the top.
Best regards,
Devin
Hi There,
I can’t seem to reopen the old issue, so I’ll repeat it here.
>I have an issue with the Fullwidth Masonry Gallery loading for the first time.
>I have 4 galleries with over 50 images in each… I want them to load in a single go (i.e. all images to come up, so I’ve set the # displayed >to be 100).
>The issue is the first time a page loads (if you clear your browser cache)… the first lot of images load fine, and then if you scroll down, the >images all start loading on top of each other, instead of forming the proper masonry tile…
>If you then refresh the page, the images all load up perfectly…
Josue kindly gave me a fix for this issue and said it would likley be included in upcoming releases of Enfold! However, I’ve updated more than 3 times now, and I need to go back and make this fix every time… could this bug fix please be included in the release!!
Thanks,
J
I used “Content Elements” to create a set of tabs. I want to be able to embed links in the content of various tabs to point to content within other tabs on the same page, within the same tab structure. I realize there may be other approaches – link to pages or posts.
I created a named anchor for each tab and placed it at the front of the content. , , and so on.
href tags bring the user to the right tabs but unfortunately the named anchor pops to the top of the viewing area.
Using Ajax or something, is there a way not to have the page jump and still be able to navigate within a tab group?
I just looked at my site on a an iphone and it looks really bad, please help me.
Previously, your team helped me adjust the header and the logo to look good on the website, but on mobile only a part of the logo is visible and none of the menu buttons are seen. Then after the slider there is a huge gap before the rest of the text.
Is there a code to make the header on mobile be seen as it was without any customization (but still have it customized on desktop) and to delete the gap after the slider?
Would really appreciate it.
Thank you
Rubie
that quick css is not working for me for question #1 above:
#toggle-id-1 .toggle_icon { display: none; }
on this page
http://www.copenhagenfilmcompany.dk/2014/team-profiles/#toggle-id-1
I’d like the top toggle to be only open and without the “-” symbol on the left –
and have cleared my cache but do not see effects.
any suggestions?
-
This reply was modified 12 years, 2 months ago by
Munford.
Hi!
Please change the code to following one
.page-id-2605 #wrap_all { display: inherit!important; }
Currently it is not being applied
Cheers!
Yigit
Hi Yigit,
I added the code to the quick css but it still shows the 1px line.
Thx,
Nick
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab
#top .widget_nav_menu .nested_nav { display: none; }
Regards,
Yigit