Forum Replies Created
-
AuthorPosts
-
Hi!
Try to use this:
.header-scrolled .widget img { height: auto !important; width: 50% !important; } .header-scrolled .widget { top: -12px !important; }
Best regards,
IsmaelHey anma!
Thank you for using Enfold.
1.) There is no solution available other than the filter via functions.php file. You can try to trick it using css but you will still have to change the arrows via functions.php:
.avia-post-prev { right: 0; left: auto; border-top-right-radius: 0px; border-bottom-right-radius: 0px; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } .avia-post-next { left: 0; right: auto; border-top-right-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 0px; border-bottom-left-radius: 0px; }
For the arrow icons:
add_action('init', 'avia_replace_default_icon', 10, 1); function avia_replace_default_icon($icons) { global $avia_config; $avia_config['font_icons']['next']['icon'] = 'ue878'; $avia_config['font_icons']['prev']['icon'] = 'ue879'; return $icons; }
2.) Change the background with this:
#top .avia-post-nav { background: red background: red; }
3.) You can try the solution here: https://kriesi.at/support/topic/remove-current-portfolio-post-from-related-portfolio-grid-enfold/#post-491961
4.) The login credentials above are not working. Please check.
Cheers!
IsmaelHey taylormanning!
Thank you for using Enfold.
Are you trying to add a related post section? Add tags across all posts to set them as related posts.
Best regards,
IsmaelSeptember 30, 2015 at 9:09 am in reply to: Header menu – css-style change – Only for Alternate menu #511198Hi!
Please remove this code:
div#header_main_alternate.container_wrap { box-sizing: border-box !important; color: rgb(53, 49, 42) !important; display: block !important; font-family: Lato !important; font-size: 13px !important; font-weight: normal !important; text-align: left !important; width: 1140px !important; }
You can start with this:
div#header_main_alternate.container_wrap { background-color: black; width: 100% !important; margin: 0 !important; } .html_header_top.html_bottom_nav_header .main_menu ul:first-child li, .html_header_top.html_bottom_nav_header .main_menu ul:first-child li a { height: 51px; line-height: 51px; }
Adjust the values as you like.
Regards,
IsmaelHey!
Please add this in the Quick CSS field to remove the space:
#top .fullsize .template-blog .post .entry-content-wrapper { margin: 0; }
Best regards,
IsmaelSeptember 30, 2015 at 8:51 am in reply to: Need to add Yelp to social icons header & footer here it is – how do I insert? #511182Hey!
Thank you for the info but it’s still not working. Please check it carefully. If you want to add a yelp icon, edit functions.php then look for this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, you can add the filter:
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_icon($icons) { $icons['yelp'] = array( 'font' =>'fontello', 'icon' => 'ue800'); return $icons; } add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1); function avia_add_custom_social_icon($icons) { var_dump($icons); $icons['Yelp'] = 'yelp'; return $icons; }
Adjust the icon value (ue800) if necessary.
Best regards,
IsmaelHi!
We modified the code a bit. It should be:
add_theme_support('deactivate_layerslider');
.. without the “s”.
Cheers!
IsmaelHey!
We need authentication details in order to access the dashboard. Please provide that as well. You don’t need to modify the max container width via css so please remove any css modifications related to the issue. Make sure that you add the “px” unit in the Maximum Container width field.
Best regards,
IsmaelHey!
Sorry for the delay. Note that bumping your own post will push it back to the end of the queue so we will not be able to answer it immediately. Add this in the functions.php file in order to deactivate the theme’s layer slider:
add_theme_support('deactivate_layerslider');
Best regards,
IsmaelHey!
Thank you for the info. You can add this in the Quick CSS field:
.html_header_top.html_main_nav_header #top .av_menu_left .main_menu { left: auto; right: 250px; }
Use css media queries to adjust the position of the menu on different screen sizes.
Regards,
IsmaelHey!
Alright. Let us know if the issue comes back. A link to the actual page or post with the issue will help.
Best regards,
IsmaelHey!
Hi Ismael – you didn’t create a test Page, you created a post that was sent out to my list by email. I got an email from one of my followers about it this morning. I’ve erased it from my website.
Actually, post and page are actually the same thing, WP just classify them as a different post type. Sorry for the confusion. Anyway, that’s not the point. Did you see how the apostrophe html entity works? We will forward the issue to Kriesi.
Cheers!
IsmaelSeptember 30, 2015 at 7:52 am in reply to: Portfolio categories not showing right postst/acting werid #511153Hi!
My bad! Anyway, glad you figured it out. Thank you for the update. :)
Cheers!
IsmaelHi cogson!
Thank you for using Enfold.
You can try something like this in the Quick CSS field:
.news-thumb:before { content: '\E827'; font-family: 'entypo-fontello'; font-size: 16px; top: 6px; left: 6px; position: relative; }
A screenshot will help.
Regards,
IsmaelHi!
I tried to modify the directory listing but I got “Location Targeting” overlay. It’s probably from a plugin that I don’t know about. Please disable that first because I can’t edit the post.
Regards,
IsmaelSeptember 30, 2015 at 7:11 am in reply to: Colour section images being scaled up (related – GRID ROW RETINA issue) #511141Hey!
1.) The background size property is set to “cover” by default to keep the aspect ratio of the image. However, it will:
scale the background image to be as large as possible so that the background area is completely covered by the background image. Some parts of the background image may not be in view within the background positioning area
Setting the background size to 100% will distort the image.
2.) Try to add this in the Quick CSS field:
@media only screen and (max-width: 990px) { nav.main_menu { display: none; } }
3.) Can you please provide a screenshot of this issue on retina display?
Best regards,
IsmaelHi!
Thank you for the info. Maybe, this will work:
function add_custom_notification_box(){ ?> <script> (function($) { $(".mfp-close").on('click',function(){ $(".comeback-message").show(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_notification_box');
Or use .toggle instead of .show.
Best regards,
IsmaelSeptember 30, 2015 at 6:56 am in reply to: Post-slider thumbnail opens in lightbox instead of going to internal post #511138Hi!
Thank you for using Enfold.
Try to replace the whole block with this:
$thumbnailurl = wp_get_attachment_url( get_post_thumbnail_id($entry->ID) ); $output .= $thumbnail ? "<a href='{$thumbnailurl}' rel='lightbox' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : "";
Cheers!
IsmaelSeptember 30, 2015 at 6:39 am in reply to: Predicable problem endemic to Envato & its suppliers #511126Hi!
Can you please provide a link to the page that you want to set as front page? If you want to set it yourself, go to Enfold > Theme Options panel then look for the Frontpage Settings. Select the page that you want to set as home page. Save the changes.
Regards,
IsmaelHey!
I’m sorry but you can’t have a full width logo when the header shrinks because of the size of the image. You can add this in the Quick CSS field to center align the image on scroll:
.header-scrolled .logo img { width: auto !important; margin: 0 auto; }
Cheers!
IsmaelHey!
I’m sorry but I think the widget is a better solution than combining both image. Bring back the widget then we’ll use css to adjust the position on scroll. You can use the .header-scrolled selector. Something like:
.header-scrolled .widget { //style here; }
Cheers!
IsmaelHi!
We transferred the code on functions.php file. You can check the page now (make sure you’re not looking on a cached version): http://procter.micco.co.uk/#asphalt-pigments-tab
EDIT: The image http://procter.micco.co.uk/wp-content/uploads/2015/09/asphalt_p.jpg and http://procter.micco.co.uk/wp-content/uploads/2015/09/asphalt_a.jpg are the same.
Regards,
IsmaelHi!
Ignore my last post, I didn’t notice the ftp details in your last reply. We’ll give you an update after we check the scripts.
Regards,
IsmaelHi!
The format of the youtube url should be like this:
http://www.youtube.com/watch?v=G0k3kHtyoqc
Try this instead:
https://www.youtube.com/watch?v=ecsCrOEYl7c&feature=youtu.be
Cheers!
IsmaelHey!
Thank you for the update. All plugins no matter how popular they are can cause issues on a certain installation. Did you subscribe the site to cdn? These threads might help:
https://kriesi.at/support/topic/contact-form-bugs/
https://kriesi.at/support/topic/contact-form-resetting-to-defaults/#post-391712Regards,
IsmaelHi!
Thank you for the info. Try to replace the code with this:
<?php $numposts = $wpdb->get_var("SELECT count(*) FROM $wpdb->posts WHERE post_status = 'publish' AND post_type IN ('post', 'news', 'photo')"); if (0 < $numposts)$numposts = number_format($numposts); $text = "動画数:<!-- 全記事数 --> {$numposts} <!-- 全記事数 -->動画"; echo $text;?>
Best regards,
IsmaelHey!
I checked the site and the widget stays on top of the menu when you scroll down. Did you figure this out?
Cheers!
IsmaelHi!
Please remove the js code then use this filter to change the header settings:
add_filter('avf_header_setting_filter', function($header) { if(is_singular('event')) { $header['header_transparency'] = 'header_transparency'; $header['header_class'] .= " av_header_transparency"; } return $header; }, 10, 1);
Best regards,
IsmaelHey JeeBar!
Thank you for using Enfold.
Can you please provide a link to the post? Is this the code that you used: https://kriesi.at/support/topic/setting-blog-to-be-a-customized-page/#post-506983
Cheers!
Ismael -
AuthorPosts