Forum Replies Created
-
AuthorPosts
-
Hi Carerra!
Try adding this to your custom CSS.
.av-1px-gap.av-flex-size .av-masonry-entry .av-inner-masonry { margin-right: 2px !important; }That should make it so the gap is visible on all monitors.
Best regards,
ElliottHey!
Try doing this, http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/, and then add a class of “my_class” to your iconlist and then try adding this to your custom CSS.
.my_class .iconlist_icon { background: url("URL to your icon image") !important; } .my_class .iconlist-char { display: none !important; }Regards,
ElliottHi!
Try changing the line to this.
$desc = get_post( get_post_thumbnail_id() ) -> post_excerpt; $featured_img_desc = ( $desc != null ) ? $desc : the_title_attribute( 'echo=0' );And then click on the featured image when editing your post and add some text to the caption field.

Cheers!
ElliottHi!
Are you sure it was Akismet? When all plugins are deactivated except Akismet you receive the errors? I think it’s most likely a different plugin which is causing the errors.
Regards,
ElliottHi!
One of the images your using, Nov5-version.fw_.png, says it’s size is 17MB. Does that sound correct? Not sure how it could have gotten so big but that’s what is it saying in Firebug. Try deleting the image and upload a different one.
Cheers!
ElliottHi Henrikgood!
As far as I can tell it’s displaying fine for me. Take a screenshot and highlight what your trying to make it do on mobiles.
Regards,
ElliottHi!
Ok for the second table your using this CSS to include the headings right?
.avia-table-1 td:nth-of-type(2):before { content: "OpenFin"; }Change the 2 to 1 like so.
.avia-table-1 td:nth-of-type(1):before { content: "OpenFin"; }Regards,
ElliottHey!
You can use this CSS to control the height when it’s scrolled.
.header-scrolled .logo img { max-height: 100px !important; }You can add the CSS in Dashboard > Enfold > General Styling > Quick CSS.
Regards,
ElliottDecember 30, 2014 at 9:48 pm in reply to: Transparent background color for main section – on home page only #373313Hi ungarod!
Try this.
.home .main_color { background-color: rgba(255,255,255,.9); } .home #main, .home #wrap_all { background-color: transparent; }Regards,
ElliottDecember 30, 2014 at 9:45 pm in reply to: Issue with product thumbnail light box displaying video at the end… #373311Hi linkrep42!
It’s from the text widget in your footer.
<a href="http://www.youtube.com/watch?v=elbXHqpbtiM" class="mfp-iframe lightbox-added" style="position: relative; overflow: hidden;"> <img width="32" height="32" src="http://1v0c9h2or466319l3y4dypby9d2.wpengine.netdna-cdn.com/wp-content/uploads/2013/05/youtub332x32.png"><span class="image-overlay overlay-type-video"><span class="image-overlay-inside"></span></span></a>Try adding a “noLightbox” class on the link.
Regards,
ElliottHey!
It’s a setting in the shortcode options.

Best regards,
ElliottHey!
And your sure the page ID is 3677? It’s working fine on my XAMPP setup so I’m not sure what else to tell you here.
Cheers!
ElliottHi!
You had this in your Quick CSS.
html, #scroll-top-link { background-color: #e1e1e1;Which was missing an ending bracket. That caused all of the other dynamic CSS to not apply, layouts, etc etc.
Regards,
Elliott-
This reply was modified 11 years ago by
Elliott.
December 30, 2014 at 9:15 pm in reply to: Moving Woocommerce Flyout Cart To Social Icon Menu #373286Hey!
I added some CSS to your Quick CSS field to align it with your social icons. It’s going to display all the time, even when it’s empty, when you do this, https://kriesi.at/support/topic/moving-woocommerce-flyout-cart-to-social-icon-menu/#post-372896.
If you do not see it when it’s empty then try clearing your browser cache.
Regards,
ElliottHey!
Open up /enfold/config-woocommerce/config.php and change line 1235 from this.
return sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s" rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image);To this.
return sprintf( '<a href="%s" itemprop="image" class="noLightbox woocommerce-main-image zoom" title="%s" rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image);And line 1254 from this.
$img = sprintf( '<a href="%s" class="%s" title="%s" rel="prettyPhoto[product-gallery]">%s</a>', $image_link, $image_class, $image_title, $image );To this.
$img = sprintf( '<a href="%s" class="%s noLightbox" title="%s" rel="prettyPhoto[product-gallery]">%s</a>', $image_link, $image_class, $image_title, $image );I’m not sure what you mean by cart in the navbar. Send us a link and we’ll take a look.
Cheers!
ElliottHey MRPP!
Actually we already have a blog layout that will display author images and a link to the author page. See here, http://kriesi.at/themes/enfold/blog/blog-multi-author/.
Just select the multi author style in Dashboard > Enfold > Blog and make sure you have a gravatar setup for the author’s email address.
Cheers!
ElliottHey!
So it looks like your trying to do this instead, http://kriesi.at/themes/enfold/homepage/transparent-header/.
All you need to do is set your header to transparent when editing your page and the content will display beneath your header like how your wanting.
When you edit your page look to the right hand side of your screen and you’ll see some layout options which you can use to change the header to transparent.
Best regards,
Elliott-
This reply was modified 11 years ago by
Elliott.
Hi Webmasterteam!
You’ll probably want to use the portfolio post types for this. You can create portfolio posts and display them in a lot of different ways with our portfolio shortcode, http://kriesi.at/themes/enfold/portfolio/portfolio-3-column/.
Or if your just wanting to display single images instead of albums then you can try out our Masonry Gallery shortcode, http://kriesi.at/themes/enfold/shortcodes/masonry-gallery/, or use a combination of both.
Best regards,
ElliottHi kristenangel!
Add this to your custom CSS.
.search .post-meta-infos time, .search .post-meta-infos .text-sep { display: none; }As for changing the events date open up /includes/loop-search.php and on line 40 you should see this.
<?php the_time('d M Y'); ?>Change it to this.
<?php if ( tribe_is_event() ) { echo tribe_get_start_date ( null, true, '' ); } else { the_time('d M Y'); } ?>Cheers!
ElliottHey!
Can you send us a link so we can take a look?
Cheers!
ElliottHey aph80!
Try this out.
add_filter('avia_masonry_entries_query','avia_exclude_current_masonry_item',10, 2); function avia_exclude_current_masonry_item($query, $params) { global $wp_query; $postid = $wp_query->post->ID; $query['post__not_in'] = array($postid); return $query; }Cheers!
ElliottHey!
Try this.
$link = "http://energyzone.ca/benjamin/";Cheers!
ElliottHey voice903fm!
It looks like the CSS your wanting to use is this.
span.avia-menu-fx { position: absolute; bottom: 20px; }If that’s not correct then send us a link and highlight in your screenshot how your wanting to change it.
Best regards,
ElliottHi lans2787!
Add this to your custom CSS.
.mejs-offscreen { display: none !important; }Best regards,
ElliottHi!
We’ll need a link to your site as well.
Best regards,
ElliottHi!
I see. First off do this, http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/, and then add a class of “my_class” to the text block element and then add this to your custom CSS.
.my_class { background: black; padding: 20px; }Best regards,
ElliottHey the_soundtouchables!
Updating to Enfold 3.0.4 should fix this, http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/.
Best regards,
ElliottHi doroth!
You can set a custom size for the header in Dashboard > Enfold > Header > Header Size. As for vertically aligning the logo it should be aligned by default but you could add some more white space at the top of your logo image or use this CSS to move it down.
.logo img { top: 40px !important; }Cheers!
ElliottHi Texaco!
For the session warning see here.
https://kriesi.at/support/topic/enfold-warning-session_start-function-session-startline-27/
And here.
https://kriesi.at/support/topic/error-issues-with-masonry_entries-php-on-line-33/
For the memory error try increasing your memory, http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP.
Regards,
Elliott-
This reply was modified 11 years ago by
Elliott.
Hey Justin!
You have them separated by commas correct? Did your client check his spam folder?
Send us a WordPress login and we’ll take a closer look.
What happens when you use the contact form 7 plugin or sending a test email with this plugin? https://wordpress.org/plugins/wp-mail-smtp/
Do you receive the emails with those?
Best regards,
Elliott-
This reply was modified 11 years ago by
Elliott.
-
This reply was modified 11 years ago by
-
AuthorPosts
