Forum Replies Created
-
AuthorPosts
-
Hey!
Youtube allows you to modify the way the video looks and we can achieve something very close to your description.
Please check the test page we have created in backend “enfold test – video lightbox”
When you add the youtube video you need to add some parameters to the URL which will change the look of the video
https://www.youtube.com/watch?v=7Ya71Vtkccc?&controls=0&modestbranding=0&autoplay=1&rel=0&showinfo=0&hd=1&autohide=1&color=white in the above URL On = 1 and Off = 0 the rest of them are parameters allowed by google controls=0 modestbranding=0 autoplay=1 rel=0 showinfo=0 hd=1 autohide=1 color=white
Use this link to build your own URL http://www.vtubetools.com/ then modify it without the iframe as showin int he above link.
For more details please ref to https://developers.google.com/youtube/player_parameters
We also added the below css in Quick CSS to make the lightbox video larger
/* Lightbox Video width */ .mfp-iframe-holder .mfp-content { width: 100%; max-width: 70%!important; }
Cheers!
Vinay KashyapHi!
We checked your theme there are multiple copies of the theme installed please delete the one’s you do not use.
There is no problem with the child theme the issue you are facing is because of the custom css added to the child theme.When we removed the custom CSS added to the child theme the mega menu works great!
To resolve the issue please remove the CSS in Enfold > General Styling > Quick CSS
and add them back one block at a time and refresh the page.
Let us know which CSS is causing the issue we can help you fix it.
Below is the Custom CSS that is causing this issue
._51m- pls _51mw{ display:none !important; } body.home .container_wrap .avia-builder-el-first{ margin-bottom:10px; } .home#top .avia-content-slider{ margin-top:15px !important; margin-bottom:10px; } #header_meta{ display:none; } .main_color .av-magazine-time{ color:#fa3900 !important; } .av-magazine .av-magazine-sideshow .av-magazine-content-wrap .av-magazine-title{ font-weight: normal !important; } /*bottone sidebar*/ .bottone-afmi{ display: inline-block; border: none; color: #FFFFFF; border-radius: 3px 3px 3px 3px; -webkit-border-radius: 3px 3px 3px 3px; -moz-border-radius: 3px 3px 3px 3px; font-family: 'Open Sans', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif; width: 254px; height: 50px; font-size: 15px; box-shadow: 0 1px 0 0 #2D607A; -moz-box-shadow: 0 1px 0 0 #2D607A; -webkit-box-shadow: 0 1px 0 0 #2D607A; text-shadow: 0 1px 0 #FFFFFF; background-color: #12427A; font-weight:lighter; letter-spacing:1px; } .bottone-afmi:hover, .bottone-afmi:active{ border: none; color: #FFFFFF; box-shadow: inset 0 1px 0 0 #6C818C,0 -1px 0 0 #6C818C,0 0 0 1px #6C818C; -moz-box-shadow: inset 0 1px 0 0 #6C818C,0 -1px 0 0 #6C818C,0 0 0 1px #6C818C; -webkit-box-shadow: inset 0 1px 0 0 #6C818C,0 -1px 0 0 #6C818C,0 0 0 1px #6C818C; background-color: #43658C; } p.testo-bottone{ text-align: center; } /*modifiche agli elementi della sidebar*/ .sidebar .news-thumb{ display:none; } .sidebar .news-time{ color: #fa3900 !important; font-weight:700; } h3.widgettitle{ border-bottom:2px solid #ccc; padding-bottom:10px; } /*modifiche al footer*/ .footer_color div .news-headline{ color:white; } .footer_color .news-time{ color:#fa3900; } .socket_color{ border-top:2px solid #ccc; } /*modifiche a pag organi sociali, staff*/ .team-member-name, .team-member-job-title{ text-align:center; }
Best regards,
Vinay KashyapHey!
Please see the image in private content it is the only form on the homepage which is coming from sidebar widget area and it is set to be visible for only logged in users.
Cheers!
Vinay KashyapHey!
To change background and font color on error please try this CSS
/* Validation error bg*/ .form_element.error input { background-color: #df6f1f !important; } /* Validation error font color*/ .form_element.error input::-webkit-input-placeholder { color:#FFF!important; }
To target all the browsers please add the following with the above CSS snippet
::-webkit-input-placeholder { /* WebKit, Blink, Edge */ color: #FFF; } :-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #FFF; opacity: 1; } ::-moz-placeholder { /* Mozilla Firefox 19+ */ color: #FFF; opacity: 1; } :-ms-input-placeholder { /* Internet Explorer 10-11 */ color: #FFF; } :placeholder-shown { /* Standard (https://drafts.csswg.org/selectors-4/#placeholder) */ color: #FFF; }
I checked the validation it works fine except for the date picker it looks like users should enter the date.
Cheers!
Vinay KashyapMarch 1, 2016 at 7:15 am in reply to: problem with main navigation on a one-page-site – highlight is flickering #591370Hi!
Remove the layer slider link from home and just add # it should automatically scroll to top if you have any issues please create a temporary user with ‘administrator’ role and share in private content with permission to deactivate all plugins and add custom code if necessary to help you resolve this issue
Regards,
Vinay KashyapHey!
You can try this on the demo site open console paste it hit enter key and then click the next slider or other options on the slider to see changes at the bottom of the console. $ sign will not work in wordpress to avoid conflict so please use jQuery.
jQuery(document).ready(function() { jQuery('#layerslider_1_1').layerSlider({ hoverPrevNext: false, cbInit: function(element) { jQuery('.c-api'); console.log('function cbInit() called'); }, cbStart: function(data) { jQuery('.c-api'); console.log('function cbStart() called'); }, cbStop: function(data) { jQuery('.c-api'); console.log('function cbStop() called'); }, cbPause: function(data) { jQuery('.c-api'); console.log('function cbPause() called (pauseOnHover)'); }, cbAnimStart: function(data) { jQuery('.c-api'); console.log('function cbAnimStart() called, current layer is: ' + data.curLayerIndex + ', next layer is: ' + data.nextLayerIndex + ''); }, cbAnimStop: function(data) { jQuery('.c-api'); console.log('function cbAnimStop() called'); }, cbPrev: function(data) { jQuery('.c-api'); console.log('function cbPrev() called'); }, cbNext: function(data) { jQuery('.c-api'); console.log('function cbNext() called'); } }); });
In the above code please adjust the class and ID names to suit your site.
Cheers!
Vinay KashyapHey smura21!
Sorry for the delay.
We are working on your ticket please wait while we update the results here soon.Unfortunately IE 9 do not support many of the modern browser features like animations to over come this we have created a page which looks good in IE9 without any animations and a fallback image for the video this page can be shown to the users who visit the site from IE by re-directing them to the link in private.
Please remove animation effect for the images and it will load fine on IE9
To redirect users create a child theme and add the below code in the header.php
http://kriesi.at/documentation/enfold/using-a-child-theme/
We have enabled enfold debug mode and custom class name support for your theme so we could easily replicate the homepage by copying it’s short code and target element using CSS if necessary.
http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/<!--[if IE 9]> <script type="text/javascript"> window.location = "http://www.domain.com/enfold-test-video-in-ie9/"; </script> <![endif]-->
Regards,
Vinay Kashyap- This reply was modified 8 years, 8 months ago by Vinay.
Hey yes9310!
Hi I see that the second line menu is now showing the red line…
If you are referring to the submenu items and would like the parent to show the redline when user select a submenu you can target it with any of the following classes
.current-menu-ancestor .current-menu-parent .current_page_parent .current_page_ancestor
Cheers!
Vinay KashyapHi Ayumi!
There is a large icon option in the icon box edit options. If you want t make the icons still larger please use the below css
/* Icon Size */ [data-av_icon]:before { font-size: 50px!important; } .iconbox_icon { margin-right:20px!important; }
Best regards,
Vinay KashyapFebruary 29, 2016 at 7:10 pm in reply to: Is it possible to download offline a web done with ENFOLD? #591032Hey angelortiz!
We are more than happy to provide you support for Enfold however this is not an issue with Enfold and we do not know anything about the DeepVacuum software please contact the software author for offline download support .
Cheers!
Vinay KashyapFebruary 29, 2016 at 3:39 pm in reply to: Leave common elements displayed on top of sliding elements #590833Hi waterwalk!
You can do this with layer slider please have a look at
If you still have any issues please create a mockup of how you need the end result to look like and share with us a temporary admin access in private content with permission to deactivate all plugins and add custom code if necessary to help you better.
Cheers!
Vinay KashyapFebruary 29, 2016 at 3:36 pm in reply to: Magazine element – both Posts and Portfolio entries? #590827Hey tcowin!
At the moment it is not possible without doing major modification… however you can use 2 magazine elements one for portfolio and one for posts.
Please feel free to request such feature here – https://kriesi.at/support/enfold-feature-requests/
Regards,
Vinay KashyapHi!
Please use this css to hide comments
.comment-container { display:none; }
If you are interested to know how to make minor css changes please feel free to check out these links :)
https://developer.chrome.com/devtools/docs/dom-and-styles
Best regards,
Vinay KashyapFebruary 29, 2016 at 3:08 pm in reply to: Space between team images, Columns betweens footer columns #590793Hi!
To reduce the margin please use the below CSS in Quick CSS
By reducing margin the team members will be pushed to left to center align them use a 1/1 grid and place them all inside the grind and enable custom CSS class for theme http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and let us know so we can help you with centring it./*Margin */ .page-id-1352 .av_one_fifth { margin-left: 3%!important; }
To add border to footer widgets please use the below css
#footer .av_one_fourth { border-right:1px solid #aaa; padding-right: 20px; } #footer .av_one_fourth:last-child { border-right:none; padding-right: 0; }
Best regards,
Vinay KashyapHi!
As you might already know most of the colors applied can be changed from Enfold > General Styling
Apart from that we noticed in Appearance > Editor > Child theme styles
In your case it looks like the colors are coming from child theme CSS which are manually added to the theme… all tho child themes are not a part of the original theme it overrides all styles of the main theme.
These are the only 2 places from where you can change the colors.
Regards,
Vinay KashyapFebruary 29, 2016 at 1:45 pm in reply to: Styling blog articles with css | article div problem #590713Hi kopf-und-stift!
how can i just change the .post-entry class only for the blog articles (not for the whole site).
Not an issue if you are not using Advance Layout builder…
Wordpress by default has a body class for different kind of pages for example if it is a blog post it has differet class in body and for single page it has different class, for product pages it has different class…
When you right click the page and inspect check for the body class as shown in the below image
you can use single-post for all blog post or postid-2871 if you like to affect only a few post you need to create a post catogery and then that catogery will appear in body class use it to target any post that you like.
Best regards,
Vinay KashyapHi voldemarasp!
Did you get this sorted? The page looks fine now… btw if you still have the same issue please change the z-index:9999999;
Then the content should appear above all the content.
Cheers!
Vinay KashyapHi!
@Guenni007 Thanks you for your help!If this is how you like the 4 cols to look in mobile
Please add the below CSS in Enfold > General Styles > Quick CSS
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .flex_column { width: 47%!important; float:left; margin-right: 3%!important; } }
Regards,
Vinay KashyapHey!
Glad this issue is sorted. Please feel free to get in touch with us if you have any questions.
Thank you for using Enfold :)
Best regards,
Vinay KashyapHey!
Is the issue resolved for you? if not please share the link so we can trouble shoot it further…
Regards,
Vinay KashyapHey!
Sorry for the delay.
The CSS code provided earlier is to position the logo and menu a little away from the edges as shown in the example.
Remove the CSS i provided and use the settings in Enfold > Header > Header behavior > Let logo and menu position adapt
After you do this please share a mockup image where exactly you want the logo and the menu to be positioned so we can and we can provide you the custom CSS as per the mockup.
Cheers!
Vinay KashyapHi!
Did you try the recommended plugin https://wordpress.org/plugins/contact-form-7/ ?
Best regards,
Vinay KashyapHey!
OK! We will keep this ticket open in case if you have any issues please feel free to contact us.
Best regards,
Vinay KashyapFebruary 29, 2016 at 10:48 am in reply to: Newsletter Mailchimp signup conversion measurement #590635Hi biekhois!
Sorry for the delay.
We are working on your ticket please wait while we update the results here soon.This is out of our support scope but we like to help you achieve what you are trying to do.
Please use the below jQuery in functions.php
//Run custom script if button is clicked function run_custom_script(){ ?> <script> jQuery(document).ready(function () { jQuery('.button').on('click', function() { console.log(' RUN SCRIPT '); }); }); </script> <?php } add_action('wp_head', 'run_custom_script');
Add your custom jQuery after the line console.log(‘ RUN SCRIPT ‘);
Cheers!
Vinay Kashyap- This reply was modified 8 years, 8 months ago by Vinay.
February 29, 2016 at 10:26 am in reply to: MY WEBSITE DONT SHOW PIGTURES IN INTERNET EXPLORE 9 #590630Hi!
The website opened on FF and chrome…
The problem on FF is very strange sometimes the images move up and down on it’s own or when i click in the form field the image move up again… Need to know if any custom CSS style or any custom jQuery is used on the site? If so please let us know which block of code and where we can access it… so we can take a closer look at the code and help you resolve it.
I could not view your site is in IE AVG antivirus blocks it due to a virus threat. Please ask your hosting provider to run a virus check on the site. After a virus check is completed by the hosting company let us know so we can trouble shoot further.
Cheers!
Vinay KashyapHey!
We are more than happy to help you but not sure if you got this sorted? Please elaborate which padding you want to remove?
There is a good reason why Kriesi chose to slide all the logos at a time… When you slide 1/1 logo imagine if there are lots of logos users will have to click 100’s of times. To modify this will be a lot of custom work you probably will have to hire a freelancer to do this.
Best regards,
Vinay KashyapHey!
Sorry for the delay…
Glad you got it sorted. The youtube URL format works if you have it in this format https://www.youtube.com/watch?v=G0k3kHtyoqc :)
Please feel free to get in touch with us if you have any questions.
Thank you for using Enfold :)
Cheers!
Vinay KashyapFebruary 29, 2016 at 8:41 am in reply to: Image in page heading (banner) not resizing correctly in ENFOLD – WooCommerce . #590602Hi!
Sorry for the delay.
We are working on your ticket please wait while we update the results here soon.We could not see how it is setup in the backend but you can achieve this by adding CSS in Enfold > General Styling > Quick CSS
/* Background Stretch to Fit*/ #av_product_description * { background-size: cover!important; }
Best regards,
Vinay Kashyap- This reply was modified 8 years, 8 months ago by Vinay.
Hi beedoadmin!
Please refer to this post by Josue here > https://kriesi.at/support/topic/polylang-lang-switcher-display-in-main-header-area/#post-379266
Please feel free to get in touch with us if you have any questions.
Thank you for using Enfold :)
Cheers!
Vinay Kashyap -
AuthorPosts