Forum Replies Created
-
AuthorPosts
-
April 30, 2016 at 11:27 pm in reply to: change directory where enfold saves avia-dynamic-css #625160
Hey,
Seems like the plugin is hooking into
wp_upload_dir
and returns the s3 path. There’s a filter you can use to change the default path:add_filter('avia_dyn_stylesheet_dir_path', function() { return "/new/path/of/dynamic/styleshet"; });
Best regards,
JosueHi,
Use this instead:
.avia_transform .av_font_icon { opacity: 1; transform: none; -webkit-transform: none; }
Best regards,
JosueHi,
Another thing you could try is changing the default upload folder to one that sits in the root of your install:
Also, please note that this is not a theme-related issue or request.
Best regards,
JosueHi,
Edit the Grid Row element and set this option – http://screencast.com/t/CRzPWNNto
Best regards,
JosueHi,
WordPress does move the files to month/date folders by default, that’s set in Settings > Media, Enfold does multiple versions of the image but you can remove/change that with this code in theme / child theme functions.php
function ava_image_sizes() { add_image_size('masonry', 0, 0); add_image_size('magazine', 0, 0); add_image_size('widget', 0, 0); add_image_size('featured', 0, 0); add_image_size('featured_large', 0, 0); add_image_size('extra_large', 0, 0); add_image_size('portfolio_small', 0, 0); add_image_size('gallery', 0, 0); add_image_size('entry_with_sidebar', 0, 0); add_image_size('entry_without_sidebar', 0, 0); add_image_size('square', 0, 0); } add_action( 'after_setup_theme', 'ava_image_sizes', 11 );
Best regards,
JosueHey,
Try adding this code to the Quick CSS / child theme style.css:
.html_header_sidebar #header .av-main-nav > li > a .avia-menu-subtext { position: absolute; top: 10px; } .html_header_sidebar #header .av-main-nav > li > a { padding-top: 30px; }
Best regards,
JosueApril 30, 2016 at 11:13 pm in reply to: Body Background color and Page Content color interfering – please help #625151Hi,
Can you point out what’s exactly wrong with the Page, screenshots would help.
Best regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi,
I tried a different approach, please check your site.
Best regards,
JosueHi,
It does connect but i’m greeted with an empty directory – http://screencast.com/t/VC2PZnPcCb
Best regards,
JosueHi,
Try increasing the memory limit allocated to PHP, you can do that by adding this line to your wp-config.php file:
define( 'WP_MEMORY_LIMIT', '512M' );
Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueApril 30, 2016 at 10:54 pm in reply to: Menu above centered logo with boxed option : logo margins + menu position #625145You are welcome, glad to help :)
Regards,
JosueApril 30, 2016 at 3:53 pm in reply to: Menu above centered logo with boxed option : logo margins + menu position #625063Ok first set the header background to white (in Theme Options) and add this code to Quick CSS:
.av-section-bottom-logo { position: fixed; top: 51px; z-index: 100; max-width: 90%; background: url("//www.marchecouvert-albi.com/wp-content/uploads/2016/04/Marché-couvert-dAlbi-logo-fond.png") 50% 50% repeat-x scroll rgb(255, 255, 255); width: 1200px; } @media only screen and (max-width: 989px) { .av-section-bottom-logo { max-width: 100%; } } @media only screen and (max-width: 767px) { .av-section-bottom-logo{ background: white !important; top: 0 } } .html_top_nav_header.html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 243px; }
Can you post a screenshot/mockup of what would you want to achieve?
Best regards,
JosueHey,
Please include an URL to the actual site, also detail what exactly is not working.
Best regards,
JosueYou can set the video to autoplay with the
autoplay
attribute:<video autoplay> <source src='http://www.w3schools.com/html/mov_bbb.mp4' type="video/mp4"> </video>
Hi,
1. Check in another browser and/or with the default WordPress theme activated.
2. If you have WooCommerce you’ll see additional elements in the Enfold page builder.
Best regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueHey Susanne,
Try setting the label of the titles to “-” and set the text in the Description field instead – http://screencast.com/t/CfIn3I9Duu.
Best regards,
JosueHi,
Try placing the grid in a 1/1 Column.
Best regards,
JosueHey,
I’m not familiar with the plugin so i don’t know what the plugin does exactly but if you want to create a Page like this it can be done with the Enfold Advanced Layout Builder (excepting the locator thing).
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
.home .avia-gallery-big { pointer-events: none; }
Cheers!
JosueTry adding this code to the Quick CSS / child theme style.css:
#top .content .flex_column .widget_nav_menu li a { padding: 5px 0; }
Regards,
JosueHola,
Podrias hacer eso con el elemento Masonry, el texto aparece dentro de la imagen.
Saludos,
JosueApril 30, 2016 at 3:15 pm in reply to: Multinational website – multiple languages with icons #625043Hey,
You could create a new Menu and use the flags images as labels of the Menu Items (in HTML):
<img src='image_flag.png'>
Then you’d set this Menu to show in the top section of the header.
Best regards,
JosueHey!
Try adding this code to the Quick CSS:
#top .main_menu .menu li ul a{ background: gray !important; color: white !important; }
Cheers!
JosueHey Jon,
They seem to be using a Easy Slider element (single Video slide) instead of a Video one.
Best regards,
Josue -
AuthorPosts