Forum Replies Created
-
AuthorPosts
-
Hi,
Does the issue persists with the default WordPress theme activated?
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.avia-gallery-thumb { width: 15%; float: left; } .avia-gallery-big{ width: 85%; float: left; } .avia-gallery-thumb a { width: 100% !important; float: none !important; }You’ll get something like this:
http://screencast.com/t/YMlywHC8Cheers!
JosueOctober 9, 2014 at 3:00 am in reply to: Post in drafter changes spacing after it is posted and post times problems. #332837Hey!
Can you detail the steps to make this problem occur? i tried reproducing this issue on a test post called “Test Post” (draft) with no success.
Regards,
JosueHey Carsten!
1. Add this to Quick CSS:
.fake-thumbnail a.slide-image { display: none; }2. That’s currently not available in the Enfold new popup script, however you can install another popup script and disable the default theme one via Theme Options.
Regards,
JosueOctober 9, 2014 at 2:49 am in reply to: Change specific cells background colour in a specific table #332833Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function td_abierto_script(){ ?> <script> (function($){ $(window).load(function() { $('.avia-table td').each(function() { var $this = $(this); if($this.text() == "ABIERTO"){ $this.addClass('td_abierto'); } }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'td_abierto_script');And this to Quick CSS:
table td, table th { background: white; } .td_abierto{ background: purple; }Regards,
Josue-
This reply was modified 11 years, 6 months ago by
Josue.
Hi!
Are you still having this issue? here’s how i see them on my end:
http://screencast.com/t/omWIZoDz
http://screencast.com/t/L0tnq1EJFfCheers!
JosueOctober 9, 2014 at 2:41 am in reply to: Post in drafter changes spacing after it is posted and post times problems. #332831Hey!
Please hand us a temporary admin account and point to a blog post with the spacing problem so we can take a look.
Cheers!
JosueOctober 9, 2014 at 2:38 am in reply to: Main Menu Touching Logo + Custom Background Image Issue #332829Hey!
Fixed background work differently in mobiles, i think it would be better to turn the background white in that environment, this will do it (Quick CSS):
.avia_mobile .main_color{ background: white; }Regards,
JosueHey Bo!
It’s fine now, i believe this happened because you had some unclosed HTML tags in your code (http://screencast.com/t/bgBeACYQ), i enabled debug mode so you can track and fix these errors.
Regards,
JosueMenu styling must be enabled, then add the CSS code i suggested.
Best regards,
JosueOctober 9, 2014 at 12:13 am in reply to: Bug with current version of Google Chrome (Version 37.0.2062.103 m)? #332793Hi!
I’m not seeing the same as you on my end (Chrome / OS X) but try adding this too:
.avia-google-map-container .gm-style-iw p { margin: 0; }Remember to flush your minify/cache.
Best regards,
JosueYeah those black bars are unexpected, have you tested it on another Mac? the expected behavior is something like my screencast (known as “rubber band”).
Cheers!
JosueOctober 8, 2014 at 10:13 pm in reply to: apotrophe character converted to html code when sharing on twitter and pinterest #332744Hi!
Put this in your wp-config.php file:
define( 'WP_MEMORY_LIMIT', '128M' );Enfold includes this comment in the source:
<!-- Debugging Info for Theme support: Theme: Enfold Version: 2.9.2 Installed: enfold AviaFramework Version: 2 AviaBuilder Version: 0.7 ML:64-PU:30-PLA:5 -->ML stands for Memory Limit.
Regards,
JosueHey!
Correct, refer to this post in WPML forums:
http://wpml.org/forums/topic/wpml-automatic-translation/Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.ajax_slide .inner_slide{ width: 100%; }Cheers!
JosueHi,
Can you post the link to your website please?
Regards,
JosueHey Diana!
You could set a custom class (custom_abc) to those icon boxes and then add this to Quick CSS:
.custom_abc [data-av_icon]:before{ content: "ABC"; /* Define text here */ font-family: sans-serif; font-size: 14px; }Repeat and modify as needed.
Best regards,
JosueHi Dara!
In that case you’d need to ask your host service provider to enable the mail PHP function.
Cheers!
JosueOctober 8, 2014 at 7:48 pm in reply to: Ajax Portfolio: preview image is cut, doesn't open dynamically to orig. height #332653Hi,
Can you post the link to the website please?
Regards,
JosueHi!
Can you post a link to your website? Dashboard access would be needed too.
Best regards,
JosueHi!
I’m unable to reproduce those white/black bars in your screenshots. Are you referring to this?
Regards,
JosueOctober 8, 2014 at 5:55 pm in reply to: Bug with current version of Google Chrome (Version 37.0.2062.103 m)? #332590Hey!
ALB is still not working with WP SEO deactivated, it seems to be another problem. Try adding this line to your wp-config.php file:
define( 'CONCATENATE_SCRIPTS', false );Cheers!
JosueYour are welcome, let us know how it goes :)
Regards,
JosueHi Peter!
It’s not WordPress SEO (i disabled it and ALB was still bugged) the one causing the issue, try deactivating one by one.
Regards,
JosueHi!
Add this code to change the text inside the menu item:
.menusep span{ color: #ff0 !important; }Regards,
JosueOctober 8, 2014 at 6:09 am in reply to: Link portfolio item to external URL duplicates Previous and Next lightbox links #332132Hi!
Yes, that seems to be an unexpected result, the problem is that both the image and the title are linking to the same link, therefore creating a double lightbox.
Here’s a fix, try adding this to theme / child theme functions.php:
function change_portfolio_title_link($title_link, $entry) { $title_link = $entry->permalink; return $title_link; } add_filter('avf_portfolio_title_link', 'change_portfolio_title_link', 10, 2);That will force the portfolio title to always link to the permalink wether or not a custom link is defined.
Regards,
JosueHey Rene!
This plugin could do the trick – https://wordpress.org/plugins/simply-exclude/
Cheers!
JosueHi Josh!
We are aware of that issue, try the following:
https://kriesi.at/support/topic/layout-builder-isnt-loading-after-update-to-3-0/#post-331374Regards,
Josue -
This reply was modified 11 years, 6 months ago by
-
AuthorPosts
