Forum Replies Created
-
AuthorPosts
-
September 21, 2015 at 10:30 am in reply to: I upload 1 image in 1 size: I get 17 EXTRA different sizes from the same image #506319
Thanks for the access, can you please try uploading a new image and check if the images are still being generated?
Regards,
Josue@Cameron32, please create a new topic for your issue and include an access to your install, we’ll take a look.
You are welcome, glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.slide-meta-comments{ display: none; }Cheers!
JosueHi!
I’d suggest you trying a specialised plugin for that, like:
https://wordpress.org/plugins/youtube-embed-plus/
https://wordpress.org/plugins/youtube-embed/
https://wordpress.org/plugins/embedplus-for-wordpress/Cheers!
JosueHey!
Firefox Mobile is currently unsupported due to low usage, here’s some workarounds you can try though:
https://kriesi.at/support/topic/firefox-on-android-nastyness/#post-379701Regards,
JosueSeptember 20, 2015 at 2:44 am in reply to: I upload 1 image in 1 size: I get 17 EXTRA different sizes from the same image #505999Hi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.header_bg{ opacity: 1 !important; }Cheers!
JosueYou are welcome, glad to help :)
Regards,
JosueYea you’re right, i was missing some things in that message, i’ve updated it and also changed it myself in your install, you can check the result live now.
Best regards,
JosueYou are welcome, glad to help :)
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueTry with this:
html{ background: white; } #socket { position: fixed; width: 100%; bottom: 0px; }Hey!
I’m not seeing the mod in your js/avia.js applied, did you revert it?
ScrollSpy works fine with the Enfold main menu, the problem is that it is not suited to work with fullwidth submenus at the moment, hence the mod to avia.js.
Regards,
JosueSeptember 18, 2015 at 4:16 am in reply to: MegaMenu Scruffy and Trasnlate, after new version. #505210Hi!
What error are you getting?
Best regards,
JosueHi!
Use this code:
#main .content{ min-height: 600px; }Regards,
JosueHi!
I re-added the code and it seems to be working. See private link.
Cheers!
JosueHey!
@font-face isn’t working there because this rule needs to be placed at the start of the stylesheet in order to work (Quick CSS content is placed at the bottom in a dynamically generated stylesheet along with your Styling settings).
What you can do is place a
styletag in the head using thewp_headhook, add the following to the very end of your theme / child theme functions.php file:add_action('wp_head', function() { ?> <style> ....@font-face code here... </style> <?php });Cheers!
JosueHi!
Yeah larger selector have more priority, if you simply change it to something like
.main_color .bb-home-highlight-boxor#top .bb-home-highlight-boxit will work without !important.Regards,
JosueLoads for me now, but im not sure where’s code block in question, in any case file load order doesn’t necessarily alters the specificity of CSS when more important selectors (like id) are present, for example:
File1.css
#id .class element{ color: red; }File2.css
.class element{ color: blue; }The first block will override the second one regardless of file order.
Hi @changegroup,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHi,
Can you please check if the issue persists with the default WordPress theme activated?
Regards,
JosueOK, me puedes pasar un acceso FTP temporal por mensaje privado?
Si es algo perpetuo, la única desventaja es una perdida ligera de performance ya que normalmente estos estilos se guardan en un archivo externo que el navegador puede cachear para no cargarlo cada vez que la pagina carga.
Como te decía en mi anterior mensaje, el problema esta relacionado a la carpeta
wp-content/uploads/dynamic_avia, hay algo que esta impidiendo que el archivo se escriba, puede ser:
– Falta de espacio
– Permisos de escrituraEsto lo tendrías que consultar con tu proveedor de servicio.
September 16, 2015 at 11:26 am in reply to: File to change the speed of the fullscreen slider transitions #503935OK thanks, that information helps us a lot. I’ll do some tests on my end, use the slide option for now to avoid the glitch.
Best regards,
JosueLa pagina me carga normal a mi, fijate en otro navegador.
Hi!
Take a look at this article:
https://www.skyverge.com/blog/overriddin-woocommerce-widgets/Regards,
JosueColoca la siguiente linea en tu wp-config.php para activar el modo DEBUG y ver si aparece algo en vez de la pantalla blanca:
define( 'WP_DEBUG', true );Es un problema con el CSS dinamico que genera Enfold con las opciones de estilo que eliges, este no se esta generando correctamente al parecer. Esto suele ser causado por algo relacionado al servidor, ya sea una configuracion de seguridad o falta de espacio (el archivo se intenta generar en la carpeta de
uploads).Lo que puedes hacer por el momento es añadir este codigo a tu functions.php (del child theme):
add_action( 'init', 'spit_dynamic_styles' ); function spit_dynamic_styles() { global $avia; $avia->style->print_styles = true; }Eso hara que ya no se use un CSS dinamico sino que se escriban los estilos directamente en la pagina.
-
AuthorPosts
