Forum Replies Created

Viewing 30 posts - 25,861 through 25,890 (of 34,566 total)
  • Author
    Posts
  • Hi,
    Please try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 479px) {
    .responsive table.shop_table.cart .product-thumbnail {
        display: block !important; 
        width: 180px !important; 
    }
    }
    @media only screen and (max-width: 767px) {
    .responsive table.shop_table .product-thumbnail {
        display: block !important; 
        width: 180px !important; 
    }
    }

    Please adjust image width to suit.

    Best regards,
    Mike

    in reply to: Image full width on ONE side of the content #987668

    Hi,
    I added the code to the Quick CSS, temporarily, to take these screenshots of the code working on the green area, as compared to the blue section with no code.
    Please see screenshots in Private Content area.
    You can add it if you would like to see for yourself.
    Please clear any cache plugin and your browser cache and check.

    Please see the last screenshot of what 768px could look like with minor css text adjustment.

    Best regards,
    Mike

    in reply to: Image full width on ONE side of the content #987379

    Hi,
    I removed the css so we could work on a different solution and have the team look at it to advise, without trying to overcome the css I wrote.
    I see you added it back though, it would be nice if you removed it.
    Today I have a new solution for the image in the green section:

    #top.page-id-1016 #av_section_3 .container {
    padding: 0px !important;
    }
    #top.page-id-1016 .avia-builder-el-15 img {
        height: 100%!important; 
        object-fit: cover; 
    }
    #top.page-id-1016 .avia-builder-el-12 {
    padding-top: 0px !important;
    }

    This fills the container with the image starting around 1300px when the image aspect allows, at higher screen sizes the image is 100% wide (it’s own width) and the height fills the container.
    The image will be 100% high all the way down to the mobile brake point, when the image goes below the text.
    The problem is that at tablet screen size the font of the white text is too big so it goes to the edge of the screen, and adding padding forces the container larger, which gives the green strip over the image.
    This is why the other code needed the “white text” rule that you removed.
    So please try this new code above, and see that the image is filling good now. If you want help making the text a little smaller for tablet so it doesn’t go to the edge, let us know.

    Now for mobile screens, you will see that the image doesn’t go to the edge left & right, this is because of the section margin, and removing it will make the text also go to the edge of the screen, so to correct this we will need to add a rule for the white text, like before. If you would like help with this please let us know.

    As for:

    .entry-content p {
    margin: 20px 0;
    }

    I removed it before with no issues, and I commented it out (made it useless) again now with no issues.
    It only adds about 10px margin to the top of paragraphs. Perhaps you had a issue removing it because you also removed some of the rule before or after? I’m not sure why you would add it back after I removed it?

    Best regards,
    Mike

    Hi,
    Please try the same code in WordPress > Customize > Additional CSS
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Product Description Not Showing on Mobile #987250

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Image sizing and removal #987249

    Hi,
    Very good, thanks for using Enfold.

    Best regards,
    Mike

    in reply to: Translate some words in Portfolio & search #987247

    Hi,
    The “View all results” works in “Say What”
    2018-07-18_223544
    But “Portfolio Items” doesn’t
    Please try @Guenni007’s tip.

    Best regards,
    Mike

    in reply to: Buttons with rounded edge and color background icons #987244

    Hi,
    Glad to hear it is resolved.

    Best regards,
    Mike

    in reply to: Using pngs instead of fontello icons #987243

    Hi,
    Do you mean the icons that look like flags or the ones that look like the globe?

    Best regards,
    Mike

    in reply to: Google maps is blank #987242

    Hi,
    I assume your Google Maps billing in enabled, but I was made aware of this change on 7/16:
    As of July 16, 2018, Google maps will return error if billing is not enabled. https://developers.google.com/maps/documentation/javascript/usage-and-billing

    Could be worth looking into.

    Best regards,
    Mike

    in reply to: Hover color of the font on the mobile menu #987241

    Hi,
    When your desktop menu is activated you can change the menu colors in Enfold Theme Options > Advanced Styling or we can assist with css. But we will need for you to activate the desktop menu, I know you said there is another issue being worked on, so please let us know when you are ready for this.

    Best regards,
    Mike

    Hi,
    Thanks for the file, I was not able to import it into my localhost, but I was able to download a new icon from fontello.com and import it, I was also able to do this for your site too. So I believe the issue is with your file.
    I couldn’t find the same icons on fontello.com to create a new file, is this where you got it from?
    Can you try creating a new icon file?

    Best regards,
    Mike

    in reply to: Problems with Blog #987236

    Hi,
    1: I removed the date from the sidebar posts by adding “.news-time” class to your “display:none” rule in your Quick CSS.
    2: I removed the top padding from the slide show for mobile height on the two pages & checked you other pages. This is what I added to your Quick CSS.

    @media only screen and (max-width: 767px) { 
    .html_header_transparency #top.page-id-3295 .slideshow_caption,.html_header_transparency #top.page-id-3302 .slideshow_caption {
        padding-top: 0px !important; 
    }
    }

    3: when you say “optimize” the site for mobile devices, what other issues do you see?
    4: for you your contact form not sending, I installed the plugin “WP Mail Logging Log” to try to catch any errors, but found none.
    Sometimes a webhost uses anti-spam software that requires the correct “from” address for SMTP so I added a filter to your functions.php that has worked in the past, but didn’t seem to work this time.
    Please ask your webhost if they see any errors in the error log, or if there are any other requirements for their smtp.

    Best regards,
    Mike

    in reply to: Using pngs instead of fontello icons #986960

    Hi,
    Thank you for the login, I changed your quick css to:

    .myicon .av-icon-char:before { visibility: hidden !important; }
    .myicon .av-icon-char { background: url(https://your-site.com/wp-content/uploads/2018/07/myicon.png) !important; background-size: contain !important; background-repeat: no-repeat !important; background-position: 50% 50% !important; }

    and it now works, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Google maps is blank #986922

    Hi,
    Please try going through the Google Maps settings, and find the Geocoding Service API and enable it which is now disabled by default.
    https://developers.google.com/maps/documentation/javascript/geocoding

    Best regards,
    Mike

    in reply to: Google Maps Not Working #986921

    Hi,

    @Jasmer
    , thanks for the tip.

    Best regards,
    Mike

    in reply to: Change icon for mega menu sub page #986917

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Image full width on ONE side of the content #986766

    Hi,
    Sorry to have caused you this trouble, the code you removed was a part of the solution.
    the “.entry-content p {” only centered the text, I have removed it and the other code that doesn’t work. (listed above)
    I wish not upset you, we will provide a solution.
    Sorry again.

    Best regards,
    Mike

    in reply to: Filter for Header Extra Info #986735

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Translate some words in Portfolio & search #986732

    Hi,
    I see, I tested the the “Say What” plugin on my localhost and found it worked correctly, Perhaps this will be a good option since you have other text changes.
    2018-07-17_213351

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Gallery Disable Hover Title #986703

    Hi,
    Can you please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: hover on portfolio filter #986377

    Hi,
    Please try this code in the General Styling > Quick CSS field:

    #top a.av-masonry-entry:hover > .av-inner-masonry .av-masonry-outerimage-container {
      -webkit-filter: blur(5px);
      filter: blur(5px);
      }

    Best regards,
    Mike

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: How to make same page link work on open burger menu #986360

    Hi,
    We will leave this open to hear back from you.

    Best regards,
    Mike

    Hi,
    Please give anyone with the link access to the file, right now dropbox says I don’t have access.

    Best regards,
    Mike

    in reply to: Demo Import not working #986356

    Hi,
    I took a look and everything looks good, in this case it is normal to get the message “file X already exists…”
    Have a great day :)

    Best regards,
    Mike

    in reply to: How to make same page link work on open burger menu #986261

    Hi,
    I may have found a possible solution
    you would need to edit the avia.js

    Best regards,
    Mike

    in reply to: Custom menu link to open tab? #986251

    Hi,
    Sorry that’s not possible.

    Best regards,
    Mike

    in reply to: Image sizing and removal #986250

    Hi,

    @PierreLeBear
    The images are used to make a responsive site for other devices, and make the site load more effectively. Removing won’t break the site but may make your users download a very large file when looking at a thumbnail.

    @sckyeYes deleting a image will also delete the thumbnails.

    By the way, the WordPress core also adds thumbnails in the same way.

    Best regards,
    Mike

Viewing 30 posts - 25,861 through 25,890 (of 34,566 total)