Forum Replies Created
-
AuthorPosts
-
Hi,
It looks like you are using a Lazy Load plugin, if so it may be adding time to the animation. We have seen other issues where the Lazy Load delayed caused issues with the elements. Try disabling your plugins to see if that helps.Best regards,
MikeHey spalta,
The images on your home page don’t have the arrow on hover, so I found a different page that did, please check the url in the Private Content area to ensure I’m looking at the correct element.Best regards,
MikeHey jumamedia,
I’m not sure I understand, it seems the footer & socket look the same on every page. Can you include a screenshot of the issue and how you would like it to look?Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHey santanin,
I have taking a look and IE11 doesn’t render images well because it’s using an old engine, the solution is suppose to be putting X-UA-Compatible IE=Edge in the header, so I put this code to the end of your child theme functions.php file in Appearance > Editor:add_action( 'send_headers', 'add_header_xua' ); function add_header_xua() { header( 'X-UA-Compatible: IE=edge,chrome=1' ); }
and cleared your site cache, but didn’t notice a difference.
I then uploaded a smaller logo and used a media query to target IE11 only in your child theme css:@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { span.logo a:before { content: ''; background: url(https://yoursite.com/wp-content/uploads/2018/01/tclogoie2.jpg) no-repeat center; display: block; height: 78px; } }
While the image looked good in IE11 my attempts to hide the old logo failed, IE11 is limited as it is not css3 ready.
Overall IE11 is hard to work with and why Edge is it’s replacement, your logo looks good in Edge.
I would suggest trying some other sizes for your logo, I know you don’t want to go down to 340px, but 1400px is way to big. Perhaps try 700px, it should still look good on other browsers and may work with IE11. If you try a few sizes I’m sure you will find a good compromise.Best regards,
MikeHi,
For the font-size and button color try:#top.product-template-default.single.single-product h1.product_title.entry-title {font-size: 17px !important;} #top.product-template-default.single.single-product div .main_color .button {background-color: red !important; }
adjust to suit.
The thumbnails are a part of the product element, and not easy to separate.
If you use the advanced layout builder it will be very different, not all of the elements with work with woocommerce. But you can try to see if you like it.Best regards,
MikeHi,
Try:h2.post-title.entry-title a {font-size: 20px !important;}
adjust the number to suit.
Best regards,
MikeHi,
That’s great news! Sorry it took so long, thanks for your patience.
Is there anything else we can assist with on this issue, or shall we close this then?Best regards,
MikeJanuary 13, 2018 at 11:54 pm in reply to: Form submissuon: how to scroll to the first error? #896976Hi,
I found this script that will scroll to the top of the page and changed it to be triggered by the submit button. What is nice about this is your can change “scrollTop: 0” to “scrollTo 100” and it will stop 100px from the top of the page, meaning you can adjust where on your page you want it to stop. And it’s not dependent on the ajax ID getting caught.
I tested it on my localhost and it seems to work.
Try adding this code to the end of your functions.php file in Appearance > Editor:function add_custom_scroll(){ ?> <script> $(document).ready(function () { $('input.button').click(function () { $("html, body").animate({ scrollTop: 0 }, 600); return false; }); }); </script> <?php } add_action('wp_footer', 'add_custom_scroll');
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.
Nice work, by the way :)Best regards,
MikeHey stovetopchicago,
For the image, Try this code in the General Styling > Quick CSS field:#top.product-template-default.single.single-product .single-product-main-image { width: 70%!important; }
Which text would you like smaller, it seems small on my screen?
Best regards,
MikeJanuary 13, 2018 at 11:12 pm in reply to: Adding a Backround Color for Left Menu Item on Mouse Over #896967Hi,
Try this code in the General Styling > Quick CSS field:li.current-menu-item:hover {background: red !important; }
Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, we will close this now. Thank you for using Enfold.Best regards,
MikeHey comprompt,
When you click the link “some important page has been removed by request” what does it say?Best regards,
MikeHey McCreight_Media,
Try adding the full path to the font in the url.
Then add the css for the elements that you wish to use the new font on in the General Styling > Quick CSS field, such as:h1,h2,h3,h4,h5,h6 { font-family: tenby-five-light !important; }
Best regards,
MikeHey McCreight_Media,
You maybe able to use float to change at mobile view, like this:@media only screen and (max-width: 767px) { #ID-of-img {float: left !important; #ID-of-text {float: right !important; }
you will need to add ID’s to the two elements and change the code according
Best regards,
MikeHey bobjonesdesigns,
Try this code in the General Styling > Quick CSS field:.post-entry-5513 .av_textblock_section h3 { margin-top: 0px !important; } .post-entry-5513 .av_textblock_section p,.post-entry-5513 .av_textblock_section img { margin-bottom: 0px !important; padding-bottom: 0px !important; }
Best regards,
MikeHey Milan,
Do you have an example in place? I tried logging in but it was disabled.Best regards,
MikeHey Dildoreus,
Add [nolink] to the end of your copyright line under Theme Options -> FooterBest regards,
MikeHi,
This is the code in your General Styling > Quick CSS field:.logo .subtext { font-size: 28px; color: #000000; } #top .logo-subtitle { color: #aaa !important; font-size: 12px !important; top: 30px !important; position: absolute; white-space: nowrap; }
the top part is for your site title, and you can change the numbers for font-size & color
the bottom part is for your tag line, and you can change the same.
If you know what size and color you want, let us know and we can help adjust it.Best regards,
MikeHey Joe,
For issue 1, Try this code in the General Styling > Quick CSS field:.av-single-event-content { width: 100%!important; float: left!important; margin-left: 0px!important; } .av-single-event-meta-bar { float: left!important; width: 100%!important; padding-top: 50px!important; }
For issue 2, this has been hard coded with “display:none” perhaps there is a setting to show this or perhaps this is a pro feature, I’m not sure. I searched and found no info on this.
Perhaps the guys at modern tribe support would have more info.
Best regards,
MikeHi,
Thank you for sharing your solution in the other thread, we will close this now. Thank you for using Enfold.Best regards,
MikeHi,
Thank you for sharing your solution, we will close this now. Thank you for using Enfold.Best regards,
MikeHey P.S. van der Veer,
Please add [nolink] to the end of your copyright line under Theme Options -> FooterBest regards,
MikeHey Agence-Numix,
Yes, I linked the Duplicator Files in the Private Content area.
I have also linked the All-in-One WP Migration files, you may find it a easier import.
all-in-one-wp-migration
All-in-One WP Migration tutorialBest regards,
Mike -
AuthorPosts