Forum Replies Created
-
AuthorPosts
-
You are welcome, glad to help :)
Regards,
JosueHey!
Try adding this code to the Quick CSS:
#tab-description{ clear: both; }Cheers!
JosueHi!
Code Block won’t work with the code you’re trying to use because of it contains a
textareatag and that ends up messing the element, one thing you could do is put your form code in a shortcode and use that instead, something like this (theme / child theme functions.php):function custom_shortcode_func() { ob_start(); ?> PUT YOUR FORM HTML CODE HERE <?php $output = ob_get_clean(); return $output; } add_shortcode('my_shortcode', 'custom_shortcode_func');Then to place your form simply use:
[my_shortcode]Regards,
JosueSeptember 16, 2015 at 5:24 am in reply to: White text on visual editor after theme update to 3.3.2 #503808Hello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueSeptember 16, 2015 at 5:19 am in reply to: File to change the speed of the fullscreen slider transitions #503806Hey!
What happens if you add more slides to it? also, does it get fixed if you change the animation setting (from fade to slide)?
Regards,
JosueHola,
¿Has probado desactivar todos los plugins?
Saludos,
JosueHi!
That’s normally the container of the image in the single post view, the code removes the padding and add some margin on the top.
Cheers!
JosueHey!
Can you post a link to your site? specifically to the page where you’re trying this code.
Cheers!
JosueHi,
Try dragging a Code Block and place the code there instead:
(function($){ $(window).load(function() { $('.contact_form_1 input[type="submit"]').on('click', function() { if (!$('.contact_form_1 p').hasClass('error')) { ga('send', 'event', 'Contact', 'Send Message', 'Contact form'); } }); $('.contact_form_2 input[type="submit"]').on('click', function() { if (!$('.contact_form_2 p').hasClass('error')) { ga('send', 'event', 'Contact', 'Get A Quote', 'Contact form'); } }); }); })(jQuery);Regards,
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHola,
Lo veo correctamente ahora, avisanos apenas ocurra de nuevo por aqui y lo miraremos :)
Saludos,
JosueSeptember 15, 2015 at 8:17 pm in reply to: Color Section Background Video Not Showing on Some Mac Computers #503661Ask them if they can see / reproduce this video:
http://www.w3schools.com/html/mov_bbb.mp4Ok change it to this:
@media only screen and (min-width: 767px) { .html_header_top.html_logo_center .logo img{-webkit-transform: translate(0,50%)scale(1,1.9);} }That way it will only activate in desktop view.
Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueSeptember 15, 2015 at 10:39 am in reply to: More menu formatting options ? font, spacing etc. #503168Hi,
Make sure you are running the latest version of Enfold (3.3.2), if you are not, refer to this guide on how to update:
http://kriesi.at/documentation/enfold/updating-your-theme-files/Regards,
JosueHi,
Can you post the link to your website please?
Regards,
JosueSeptember 15, 2015 at 6:44 am in reply to: More menu formatting options ? font, spacing etc. #503120Refresh a few times, the form is appearing now on my end.
Would be better if you could lift the block for some time so the whole team can help, is !important working btw?
Cheers!
JosueHi David!
em is relative to the base font size (which is either set manually or by the browser default), what you want is probably something like this:
https://css-tricks.com/viewport-sized-typography/Cheers!
JosueHey kops!
Remove this in css/custom.css:
.html_header_top.html_logo_center .logo img{-webkit-transform: translate(0,50%)scale(1,1.9);}Regards,
JosueHey!
The link you posted is returning:
403 – Forbidden: Access is denied.
Regards,
JosueHey!
Try adding this code to the Quick CSS:
.wpcf7 h2, .wpcf7 h2, .wpcf7 h3, .wpcf7 h4, .wpcf7 h5 { clear: both }Cheers!
JosueHey!
Remove this code from your custom CSS:
/* Enter Your Custom CSS Here */ iframe, object, embed { max-width: 41%; }Regards,
JosueYou are welcome, glad to help :)
Regards,
JosueHi,
Can you post the current link to your website please?
Regards,
JosueHi!
I’m getting this error when trying to log-in to your site:
503 Service Temporarily Unavailable
Regards,
JosueHi,
Open js/avia.js and look for the following:
megaItems.each(function(i){ $(this).hover(Replace it by this:
megaItems.each(function(i){ $(this).click(Regards,
JosueSeptember 14, 2015 at 10:59 am in reply to: Add Custom Font 'SansaSoftSmConPro-Light.eot' from FontShop.com #502589You are welcome, glad to help :)
Regards,
JosueHey Oliver!
The label field in each menu item accepts HTML tags, so you can put something like this there:
Title <span>subtitle</span>Then you can target that with CSS:
.avia-menu-text span{ display: block; }That will place the span in its own line (like the example).
Best regards,
Josue -
AuthorPosts
