Forum Replies Created
-
AuthorPosts
-
Hey Costin!
That would help, post them here as a private reply.
Regards,
JosueHey!
Open /config-templatebuilder/avia-template-builder/assets/css/avia-builder.css and add this:
a#avia-builder-button { display: none; }Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.header_bg { background: #FFFFFF url(https://www.msfwebdesign.com/chrisabbott_dev/wp-content/uploads/genesis-extender/plugin/images/header_background.jpg) no-repeat; } #header_main_alternate { background: black; } #avia-menu > li > a .avia-menu-text { color: white !important; } .html_header_top .av_bottom_nav_header .main_menu ul:first-child > li a, .html_header_top.html_bottom_nav_header .main_menu>div, .html_header_top.html_bottom_nav_header .main_menu ul:first-child{ height: 50px; line-height: 50px; } @media only screen and (min-width: 767px) { body#top { margin-top: 50px !important; } } div#wrap_all { border-radius: 20px; overflow: hidden; } a#advanced_menu_toggle { color: black; }Disable the sticky header option after you apply the code.
Cheers!
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
Hi Sam!
Try putting the code in a Text Widget.
Cheers!
JosueMay 16, 2014 at 4:34 am in reply to: Padding / Margin spacing between images using layout builder #265692You are welcome, glad we could help :)
Regards,
JosueMay 16, 2014 at 4:27 am in reply to: Padding / Margin spacing between images using layout builder #265688Hey!
Try adding this code to the Quick CSS:
.home.boxed .container { margin: 0 75px !important; }Cheers!
JosueMay 16, 2014 at 4:19 am in reply to: Padding / Margin spacing between images using layout builder #265683Are you referring to this?
http://screencast.com/t/ZxOEIZBvjRegards,
JosueHey!
There is one plugin that may be creating a conflict (wp-jackbox), have you tried disabling it?
Cheers!
JosueHey!
It’s not, the latest version is 2.7.1:
http://kriesi.at/documentation/enfold/updating-your-theme-files/Best regards,
JosueHi Sarah,
Can you post the link to your website please? do you have the latest version of WP and Enfold?
Regards,
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.page-id-1302 .av_one_fourth.avia-builder-el-last { display: table; min-height: 180px !important; } .page-id-1302 .av_one_fourth.avia-builder-el-last .avia-button-wrap { display: table-cell; vertical-align: middle; }Cheers!
JosueHi Agustín!
You can alter the pattern in /includes/helper-social-media.php, line 144:
'twitter' => array("encode"=>false, "pattern" => "http://twitter.com/home?status=[title] [shortlink]"),To:
'twitter' => array("encode"=>false, "pattern" => "http://twitter.com/home?status=[title] [shortlink] via @kriesi"),Best regards,
JosueMay 16, 2014 at 2:24 am in reply to: Padding / Margin spacing between images using layout builder #265642Hey!
Try modifying your code to:
@media only screen and (min-width: 768px) { div .av_one_third { margin-left: 1%; width: 29.333333333333332%; } div .av_two_third { margin-left: 1%; width: 64.66666666666666%; } body .column-top-margin { margin-top: 10px; } }Cheers!
JosueHey Elise!
Have you set the excerpt here?

Cheers!
JosueYou are welcome, glad we could help :)
Regards,
JosueYou are welcome, glad we could help :)
Regards,
JosueMay 16, 2014 at 12:05 am in reply to: YouTube video ignores start time when embedded but works when link is forwarded #265624Hi Jeff!
Use this exact URL for the link:
Then, add this add the very end of the theme functions.php file:
function add_custom_script(){ ?> <script type="text/javascript" charset="utf-8"> jQuery(window).load(function(){ jQuery("a[href='https://www.youtube.com/watch?v=7kYQBVFls9g&hl=en_US&t=3063']").prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery: false, iframe_markup: '<iframe src="{path}&start=3063" width="{width}" height="{height}" frameborder="no"></iframe>' }); }); </script> <?php } add_action('wp_footer', 'add_custom_script');Regards,
JosueHello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHey Lenn!
It’s not possible to have the same Enfold ‘parallax’ in LS.
But if you want to have a LS slider inside a Color Section you can do it using the shortcode (inside a Text Block element):

Cheers!
JosueHello!
This is not exactly a theme issue, you’d need to look for a plugin that let you have ‘restricted’ member-only areas, like:
http://wordpress.org/plugins/user-access-manager/Cheers!
JosueYou are welcome, glad we could help :)
Regards,
JosueHi!
Please don’t create duplicates.
1. Advertising Widget:
Open /framework/php/class-framework-widgets.php and look for lines 822-823:
echo '<a target="_blank" href="'.$ref_url.'" class="preloading_background avia_partner1 link_list_item'.$kriesiaddwidget.' '.$firsttitle.'" >'.$image_url.'</a>'; if($this->add_cont == 2) echo '<a target="_blank" href="'.$ref_url2.'" class="preloading_background avia_partner2 link_list_item'.$kriesiaddwidget.' '.$firsttitle.'" >'.$image_url2.'</a>';Replace them by:
echo '<a target="_blank" rel="nofollow" href="'.$ref_url.'" class="preloading_background avia_partner1 link_list_item'.$kriesiaddwidget.' '.$firsttitle.'" >'.$image_url.'</a>'; if($this->add_cont == 2) echo '<a target="_blank" rel="nofollow" href="'.$ref_url2.'" class="preloading_background avia_partner2 link_list_item'.$kriesiaddwidget.' '.$firsttitle.'" >'.$image_url2.'</a>';2. Footer:
Open footer.php and look for line 82:
$kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at'>Enfold Theme by Kriesi</a>");Replace it by:
$kriesi_at_backlink = apply_filters("kriesi_backlink", " - <a href='http://kriesi.at' rel='nofollow'>Enfold Theme by Kriesi</a>");Regards,
Josue-
This reply was modified 11 years, 5 months ago by
Josue.
Hi Hannes!
Those are Eunoia shortcodes which work only in that theme, you could either remove them manually by editing the Posts, doing a search and replace may do the job too.
Also, take a look at this plugin:
http://wordpress.org/plugins/hide-broken-shortcodes/Cheers!
JosueMay 15, 2014 at 11:07 pm in reply to: Post Slider – Strange configuration at 678px breakpoint #265586Thank you very much for the detailed report, i’ll notify.
Best regards,
JosueMay 15, 2014 at 11:03 pm in reply to: No images displayed when logged out of wordpress admin #265582Hello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHi!
Refer to this topic:
https://kriesi.at/support/topic/share-icons-on-pages-and-portfolio-items/Cheers!
Josue -
This reply was modified 11 years, 5 months ago by
-
AuthorPosts
