Forum Replies Created

Viewing 30 posts - 15,871 through 15,900 (of 35,013 total)
  • Author
    Posts
  • in reply to: Main menu's drop down menu #1252748

    Hi,
    Sorry, did you find that the highlighting is working correctly now?
    The other css is in place and looks like it is working, please see the screenshot in the Private Content area.

    Best regards,
    Mike

    in reply to: Layerslider Image BG Opacity #1252743

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Thank you for pointing that out,🤦‍♂️ so considering the difference between your homepage & your test page I removed the code block contents at the bottom of the page which is an iframe for google maps? This restored all of the images.
    I added it back for you to review, please try removing it and checking the code.

    Best regards,
    Mike

    Hi,
    Thanks for the feedback, that is strange, I checked again using a VPN and different IPs from different countries, but the images always showed, I also tested with browserstack.com so the results would be independent of my machines, and a webpage screenshot service, but I couldn’t recreate your issue.
    Please try testing with browserstack.com or a VPN to see if you get the same results as I.
    Please see the screenshots in Private Content area.

    Best regards,
    Mike

    in reply to: Main menu's drop down menu #1252262

    Hi,
    Thank you, I adjusted, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Anchors and active menu items problem #1252254

    Hi,
    Glad to hear, we will leave this open to hear back from the dev team.

    Best regards,
    Mike

    in reply to: proportional resize of photos and text #1252253

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

    Best regards,
    Mike

    in reply to: Header links font changes on different pages #1252248

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Fullscreen Slider Not Responsive #1252243

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Both front end and sit- admin very slow to update. #1252141

    Hey Tam68,
    Sorry for the late reply and thanks for the login, but your site would not load for me, frontend or backend, if it would load I could check further. Which web host are you using? I can say that this is not how Enfold runs, so there is either a server issue or a IP block for me? I’m in the USA, are you in the Netherlands?
    Please check your server error log and also check if you have an IP block.

    Best regards,
    Mike

    Hi,
    Sorry for the late reply and thanks for the login, I checked your page on Windows 10 Chrome, Firefox, Edge, and on Mac Safari & Chrome, but the image “TTG-slogan-TTG-2021_2-833×1030.png” (glass 2021) image shows for me.
    My first thought was that you had Lazy Loading enabled in the theme settings and was also using a plugin for Lazy Loading, but I don’t see that is true, and since I see the images it must be something else.
    Do you still see this error? What OS & browser are you using?

    Best regards,
    Mike

    in reply to: Color Section – Auto adjust height #1252133

    Hey Lee,
    Sorry for the late reply, I took a look at your page for mobile and tablet but the top background image looks the same to me and seems to adjust correctly. Please see the screenshots in the Private Content area.
    If you are getting different results please post some screenshots and let us know which OS & browser you experience this with.

    Best regards,
    Mike

    in reply to: proportional resize of photos and text #1252132

    Hi,
    Sorry for the very late reply and thanks for the link to your page. So for tablet we can remove the page padding and the margin & padding for the image to make it as large as possible, but the element is a 1/2 column.
    For the icon box text, one way to to increase the width is to hide the icon for tablet which removes the indent making the text wider, but I don’t know if the icon is important for you to show on tablet. Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (min-width: 768px) and (max-width: 1024px) { 
    	#top.page-id-4188 #av_section_2 > div.container {
    		padding: 0 !important;
    	}
    	#top.page-id-4188 #av_section_2 > div.container > div > div > div > div > article > div.iconbox_icon.heading-color {
    		display: none !important;
    	}
    	#top.page-id-4188 #av_section_2 > div.container > div > div > div > div {
    		margin-left: 0 !important;
    		width: 49% !important;
    	}
    }

    After applying the css, please clear your browser cache and check. Please see the link in the Private Content area for the expected results. From the screenshot you should see that there is not enough room for the image to be the same size as the icon box text.
    Please note this css will only work for your test page.
    Another option is to change the element layout for tablets by adding a new section that works for your thoughts on tablet and then hide / show the elements based on screen size. Let us know if this is something you would like to try.

    Best regards,
    Mike

    in reply to: Special Characters within CODE BLOCKS on 3rd Party Forms #1252129

    Hi,
    Sorry for the late reply, and thanks for the links and code, but for adding code to the code block element you do not need to use the Special Character Converter plugin.
    I tested your script, and I see it doesn’t work but I would say that it’s the script and not the code block element, for example, try this script in a code block element:

    <input type="button" value="Click me" onclick="alert('Thanks... this alert works fine');">

    it creates a button that when clicked pops an alert box.
    I recommend ensuring the script code above is correct, try asking where you got it from if there is a testing script that doesn’t require an account just to show the form to show that it is working. There is a good chance that the script will only work on your domain linked to your account.

    Best regards,
    Mike

    in reply to: Fullscreen Slider Not Responsive #1252052

    Hi,

    @win90
    sorry for the late reply and thanks for the login. So since your slides contain text in the image that you want to show we will need to make the background image either “contain” or “cover” for mobile & tablet, but because of the portrait orientation of these devices the background height also needs to be adjusted so the full width of the image will show.
    So, I removed your above css and added this to your Quick CSS:

    @media only screen and (max-width: 1025px) {
    .avia-fullscreen-slider .avia-slideshow[data-image_attachment="fixed"] > ul > li {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }
    }
    @media only screen and (max-width: 330px) { 
    .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow[data-image_attachment="fixed"] {
        height: 190px !important;
    }
    }
    @media only screen and (min-width: 331px) and (max-width: 385px) { 
    .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow[data-image_attachment="fixed"] {
        height: 200px !important;
    }
    }
    @media only screen and (min-width: 386px) and (max-width: 435px) { 
    .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow[data-image_attachment="fixed"] {
        height: 260px !important;
    }
    }
    @media only screen and (min-width: 436px) and (max-width: 770px) { 
    .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow[data-image_attachment="fixed"] {
        height: 480px !important;
    }
    }

    This css covers the most common 3 phone sizes & 2 tablet sizes, please clear your browser cache and check.


    @Steve
    from your HTML copy it looks like this css would correct, I’m not sure why this would occur, perhaps some css conflict, but give this a try:

    #main > div.main_color.container_wrap_first.container_wrap.fullsize > div {
    	max-width: 100% !important;
    	padding: 0 !important;
    }
    #main > div.main_color.container_wrap_first.container_wrap.fullsize > div > .content {
    	padding: 0 !important;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Layerslider Image BG Opacity #1252049

    Hey mbesh,
    Sorry for the late reply, please go to your slide, then click the layer and go to styles > effects > opacity;
    2020-10-11_073729_cr.jpg

    Best regards,
    Mike

    in reply to: Error while creating/deleting page #1252048

    Hi,
    How do you mean that you can’t open a new thread?
    I tested your contact form and it seems to work correctly, at least I got a “sent successfully” message:
    2020-10-11_064558.jpg
    I could not login as an admin as it seems to have expired. Is this a new error sense you have updated? Please explain further.

    Best regards,
    Mike

    in reply to: Can't import SHOP Demo #1251985

    Hi,
    Sorry for the late reply, I attempted to import the shop demo but I also got the “Importing didnt work!” error, in the browser console the error shows as /SES01/wp-admin/admin-ajax.php 404 (Not Found)
    although this is the correct path and the file permissions look correct, I thought your “Loginizer” plugin was protecting the file but disabling it didn’t help.
    Your server error log shows client denied by server configuration but I don’t find any cPanel settings to adjust nor do I see access to mod_security
    I do see that your PHP version is set to v7.2 and the minimum recommended version of PHP for WordPress is 7.4, yet you don’t have this option.
    I tried adding define('CONCATENATE_SCRIPTS', false ); to your wp-config.php, but it didn’t help. I then removed this.
    Please try asking your webhost if mod_security can be deactivated.

    Best regards,
    Mike

    in reply to: Main menu's drop down menu #1251960

    Hi,
    Sorry for the late reply and thanks for the login, I didn’t see Victoria’s css for your hover effect in the Quick CSS so I added it and it seems to work correctly, please clear your browser cache and check that this is the effect you wish for.
    2020-10-10_194505.jpg

    Best regards,
    Mike

    in reply to: Modify transparent header on specific page #1251953

    Hey mikeens,
    Sorry for the late reply and thanks for the login. To change the transparent header on your “about” page to #fcb514, try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #top.page-id-84 #header {
    	    background: #fcb514 !important;
    }

    if you want the yellow to be slightly transparent try this css:

    #top.page-id-84 #header {
    	    background: rgba(252, 181, 20, .8) !important;
    }

    To change the logo for this one page try adding this code to the end of your functions.php file in Appearance > Editor and adjust the url to your image to suit

    function custom_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
      $("#top.page-id-84 .logo img").attr("src","https://your-site.ca/wp-content/uploads/2020/09/Projects-Logo-One-Colour-Amber.png");
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    Then clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Header links font changes on different pages #1251952

    Hi,
    Sorry for the late reply and thanks for the login, the reason the font-weight looks different is because on your homepage the css loading for the Montserrat font is this one
    family=Montserrat:regular,700&subset=latin%2Clatin-ext
    that contains this code for Montserrat-Bold, which is different than Montserrat

    /* latin */
    @font-face {
      font-family: 'Montserrat';
      font-style: normal;
      font-weight: 700;
      src: local('Montserrat Bold'), local('Montserrat-Bold'), url(https://fonts.gstatic.com/s/montserrat/v15/JTURjIg1_i6t8kCHKm45_dJE3gnD_g.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
    }

    this is loaded by the layerslider due to the font choice in the layers which is overriding the default one:
    family=Lato:300,400,700%7CMontserrat
    I added the css above to your WordPress > Customize > Additional CSS field and now your inner pages look like your homepage.
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Link "Cookie Settings" in the footer #1251949

    Hey Diana,
    Sorry for the very late reply, to make your footer menu link open the cookie settings I added these classes to the menu item:
    avia-cookie-consent-button avia-cookie-consent-button-2 av-extra-cookie-btn avia-cookie-info-btn
    To do this I first enabled custom classes to your menu items in the “screen options” in the menu:
    2020-10-10_154204.jpg
    Then I added the classes in the field:
    2020-10-10_154411.jpg
    Please clear your browser cache and check.

    Best regards,
    Mike

    Hi,
    I added this css to adjust the background image size and position for the iPad, please clear your browser cache and check.

    @media only screen and (min-width: 768px) and (min-width: 1024px) and (orientation : portrait) { 
    	#top.home #av_section_1 > .avia-full-stretch {
        background-size: contain !important;
        background-color: #001636;
        background-position: 0 70% !important;
    } 
    }
    @media only screen and (min-width: 768px) and (min-width: 1366px) and (orientation : landscape) { 
    	#top.home #av_section_1 > .avia-full-stretch {
        background-size: contain !important;
        background-color: #001636;
        background-position: 0 90% !important;
    } 
    }

    The looping is set in the gif image, you can change the loop count with an online editor or with the tool you used to create the gif.
    The gif loops for me on desktop with a pause between loops

    Best regards,
    Mike

    in reply to: Change Category Page to Editable Landing Page #1251884

    Hi,
    Sorry for the late reply, unfortunately, I do not see a way to do this without a major rewrite, but I submitted this to the dev team for review as perhaps they will see a solution that I missed or will consider adding this function.
    I will reply when the dev team reviews, thanks again for your patience.

    Best regards,
    Mike

    Hi,
    Thank you for the login and link to your site, I first deactivated the Enfold Theme Options > General Layout > Sticky Sidebar menu option:
    2020-10-10_074228.jpg
    then I added this code to the end of your functions.php file in Appearance > Editor:

    function custom_sidebar_header_sticky(){
      ?>
      <script>
    (function ($) {
      $(window).scroll(function (e) {
        var $sticky = $('.html_header_sidebar #top #header');
        var width = $(window).width()
        var position = ($sticky.css('position') == 'fixed');
        if ($(this).scrollTop() > 100 && width >= 767 && !position) {
          $sticky.css({ 'position': 'fixed', 'top': '-100px' });
          $sticky.next().css('float', 'right');
          $sticky.addClass('fixed_element_style');
        }
        if ($(this).scrollTop() < 100 && position) {
          $sticky.css({ 'position': 'absolute', 'top': '0px' });
          $sticky.removeClass('fixed_element_style');
        }
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_sidebar_header_sticky');

    and now in my test the sidebar header now allows enough scroll to show the mail social button for “tablet” & “desktop”
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Anchors and active menu items problem #1251850

    Hi,
    I understand and didn’t mean it as a workaround, I was pointing out what I had found, anyways I will report back after the dev team checks.

    Best regards,
    Mike

    Hi,
    Thank you for the feedback, I understand but I’m not experiencing this, I tested with Chrome on Windows & Mac, please see the video in the Private Content area.
    Did you try an incognito window and clearing your cache?
    I’m using:
    Chrome Version 86.0.4240.75 (Official Build) (64-bit)

    One possible solution would be to change the code above to use “opacity” instead of “display”, but I would prefer to recreate your error to ensure it’s not just you if that makes sense.

    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 in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Anchors and active menu items problem #1251704

    Hi,
    While reporting this I found that If the portfolio grid is replaced with another element, such as the masonry element, or if the 3/5 column that the portfolio grid is inside of is changed to full width, or if the column is removed the menu highlighting works correctly. So it seems to be related to the element nested inside of the column, anyways I will report back after the dev team checks.

    Best regards,
    Mike

    in reply to: Anchors and active menu items problem #1251427

    Hi,
    Thank you for your testing, I copyied your page and menu to my localhost and was able to recreate this issue, I will submit this to the dev team to check. Thanks again for your patience.

    Best regards,
    Mike

Viewing 30 posts - 15,871 through 15,900 (of 35,013 total)