Forum Replies Created
-
AuthorPosts
-
Prueba cambiarlo a:
@media only screen and (max-width: 989px) { .html_header_transparency .header_bg { background: rgba(0, 0, 0, 0.7) !important; } }Try with this code instead:
function add_custom_script(){ ?> <script> (function($){ $(window).load(function() { $('.single-post .big-preview, .single-post .avia-gallery').magnificPopup({ delegate: 'a', type: 'image', mainClass: 'avia-popup mfp-zoom-in', gallery: { enabled:true }, callbacks: { imageLoadComplete: function() { var self = this; setTimeout(function() { self.wrap.addClass('mfp-image-loaded'); }, 16); } } }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');That’s how LayerSlider works, i’d suggest uploading a bigger image for the background, at least 1500 wide.
Regards,
JosueHi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueYou could make it a transition, try:
.header-scrolled div .logo { background-size: 33px 30px; } div .logo { -webkit-transition: background-size linear 0.2s; -moz-transition: background-size linear 0.2s; transition: background-size linear 0.2s; }Best regards,
JosueHey!
Do you want the header to stay glassy even when scrolled?
Regards,
JosueHey Mike!
You can enable this and set a custom class to the table elements, this way you can make the same-width code affect certain elements only:
.custom_table tr, .custom_table td { width: 19%; }Best regards,
JosueAugust 28, 2014 at 7:31 am in reply to: Blog grid with always the same preview picture of each category #310271Hey!
If you use a SEO plugin like WordPress SEO you can set the image-to-be-shared separately from the Featured Image.
http://screencast.com/t/oiIvX18kYGnRegards,
JosueHi Nemanja,
Can you post the link to your website please?
Regards,
JosueYes, we are aware of this issue. Right now the best workaround is to set the table as scrollable.
Best regards,
JosueHey!
Have you checked on another computer? it’s not happening on my end – http://screencast.com/t/4v4bwUI2K7
Cheers!
JosueAugust 28, 2014 at 7:19 am in reply to: Message Sent label not displaying consistently in IE10 #310264Hi,
Can you post the link to the website please? i’d try to recreate it on my environment.
Regards,
JosueHi!
Are you using the latest version of Enfold (2.9.2)? can you post a link to your website?
Best regards,
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed? are you using the latest version of Enfold (2.9.2) / WordPress (3.9.2)?
Regards,
JosueHey!
Refer to this topic:
https://kriesi.at/support/topic/swap-out-logo-for-mobile-devices/Regards,
JosueHi Bruno!
Try selecting this option in the Table element options:

Cheers!
JosueHey!
It is impossible for us to debug it if we don’t see the problem, i’d suggest setting a staging installation with the latest version so we can help you out.
Cheers!
JosueHi,
Open css/shortcodes.css and look for lines
#top .aviaccordion-title-on-hover .aviaccordion-preview{opacity: 0; filter:alpha(opacity=0); text-align: center;} #top .aviaccordion-title-on-hover .aviaccordion-active-slide .aviaccordion-preview{opacity: 1; filter:alpha(opacity=100);} #top .aviaccordion.av-animation-active .aviaccordion-slide, #top .aviaccordion-title-on-hover .aviaccordion-preview{ -webkit-transition: all 0.7s cubic-bezier(0.230, 1.000, 0.320, 1.000); -moz-transition: all 0.7s cubic-bezier(0.230, 1.000, 0.320, 1.000); transition: all 0.7s cubic-bezier(0.230, 1.000, 0.320, 1.000); }Replace it by this:
#top .aviaccordion-title-on-hover .aviaccordion-preview .aviaccordion-excerpt{opacity: 0; filter:alpha(opacity=0); text-align: center;} #top .aviaccordion-title-on-hover .aviaccordion-active-slide .aviaccordion-preview .aviaccordion-excerpt{opacity: 1; filter:alpha(opacity=100);} #top .aviaccordion.av-animation-active .aviaccordion-slide, #top .aviaccordion-title-on-hover .aviaccordion-preview .aviaccordion-excerpt{ -webkit-transition: all 0.7s cubic-bezier(0.230, 1.000, 0.320, 1.000); -moz-transition: all 0.7s cubic-bezier(0.230, 1.000, 0.320, 1.000); transition: all 0.7s cubic-bezier(0.230, 1.000, 0.320, 1.000); }Regards,
JosueHi Chris,
Open /enfold/config-templatebuilder/avia-shortcodes/postslider.php and look for this code:
$markup = avia_markup_helper(array('context' => 'entry','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>"; $output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : ""; $output .= "<div class='slide-content'>"; $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $output .= '<header class="entry-content-header">'; $output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : ''; $output .= '</header>';Replace it by this:
$markup = avia_markup_helper(array('context' => 'entry','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)); $output .= "<article class='slide-entry flex_column {$style} {$post_class} {$grid} {$extraClass} {$thumb_class}' $markup>"; $output .= '<header class="entry-content-header">'; $output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : ''; $output .= '</header>'; $output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : ""; $output .= "<div class='slide-content'>"; $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));Regards,
JosueHola,
Prueba con este código:
@media only screen and (max-width: 767px) { .html_header_transparency .header_bg { background: rgba(0, 0, 0, 0.7) !important; } }Hey!
Try adding the following codes to the Quick CSS (General Styling):
White:
#av_section_2 .container { padding: 20px; background: white; }Opaque:
#av_section_2 .container { padding: 20px; background: rgba(255, 255, 255, 0.8); }Cheers!
JosueHey!
Try adding this:
.html_entry_id_159 .main-title { display: none!important; }Cheers!
JosueAugust 28, 2014 at 6:43 am in reply to: Text Editor is missing style icon bar, and all text is white #310241Hey!
Both sites have 2.4.4, this issue is addressed in the latest version of Enfold (2.9.2), please update.
Cheers!
JosueHi!
Check out this plugins:
https://wordpress.org/plugins/youtube-channel-gallery/
https://wordpress.org/plugins/youlist/Also:
http://premium.wpmudev.org/blog/best-wordpress-youtube-gallery-plugins/Regards,
JosueHi!
That’s because you are not linking to an actual image but to a website, you can do this however:
http://screencast.com/t/IPzHTryYGs3vCheers!
JosueYou are welcome, always glad to help :)
Regards,
JosueAugust 28, 2014 at 6:01 am in reply to: Where do i Place the coding to make Portfolio Grid Change? #310230You are welcome, glad to help :)
Regards,
JosueYou can use is_category for a particular category or is_archive to affect all categories and tags pages:
if( is_page( array( 59, 37, 124 ) ) || is_archive() || is_category( array( 2, 3, 5 ) ) )Hi Scott!
I don’t think it would be possible to exclude an element from Enfold styles and scripts without breaking the whole site, i’d suggest using an iframe.
Also, have you checked the Image element? you can set a caption there that reveals on hover.
Best regards,
Josue -
AuthorPosts
