Forum Replies Created

Viewing 30 posts - 24,481 through 24,510 (of 34,601 total)
  • Author
    Posts
  • in reply to: css custom for phone number header #1021126

    Hi,
    Thank you for the link, try wrapping your text and number in span classes and add to the Phone Number or small info text field, like this:

    <span class="phone-text">Contact Us</span> <span class="phone-number">555-5555</span>

    Then add this code in the General Styling > Quick CSS field:

    .phone-text {
    font-size: 12px;
    color: red;
    }
    .phone-number {
    font-size: 14px;
    color: green;
    }

    adjust the colors and sizes to suit.

    Best regards,
    Mike

    Hey rosman21,
    It sounds like it might be a file permissions issue but we can’t be sure without checking, Can you please include a admin login in the private content area so we can take a closer look.
    Since we don’t want to reset your site, what saving or importing are you trying to do? That is, what can we try to do to see the error that won’t cause issues for you if it does suddenly starts working?

    Best regards,
    Mike

    Hi,
    Yes, it might be best to leave it. You could always add a link or button to the top to direct people to the page you want them to see. Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Tab Section Scroll Down #1021120

    Hey msutherin,
    Sorry for the late reply, but thanks for the link to the site.
    I have two working scripts for you to try out by adding to the end of your functions.php
    Please don’t install both at the same time,they each work a little different and I wanted you to choose the best one for your project.
    They will both scroll down on click of your tab section. This first one will scroll down based on the vertical scroll bar position, so you can adjust the “1100”, which in my tests puts the tab link images just up out of view. This may change a little based on the screen width of the visitor, but it should not be too much difference.

    function scroll_down_script_1(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $('a.av-section-tab-title').click(function () {
      $('html, body').animate({
          scrollTop: (1100)
      }, 'slow');
    });
     });
      })(jQuery);
    </script>
      <?php
      }
      add_action('wp_footer', 'scroll_down_script_1');

    This second one will scroll down to a element, so I choose the diamond shape of the bottom of the tab section, which in my tests puts the tab link images just up out of view. This should not change and be consent for everyone. The number in this code is how fast it will scroll down, 500 is half of a second.

    function scroll_down_script_2(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $('a.av-section-tab-title').click(function () {
        $('html, body').animate({
            scrollTop: $('.av-tab-arrow-container').offset().top
        }, 500);
    });
    });
      })(jQuery);
    </script>
      <?php
      }
      add_action('wp_footer', 'scroll_down_script_2');

    So try them out and let us know which one you end up using.

    Best regards,
    Mike

    in reply to: Coupon value alignment #1021116

    Hey profumopuntoit,
    Sorry for thw late reply, Please try this code in the General Styling > Quick CSS field:

    #top .cart-collaterals .cart_totals .cart-discount td {
    text-align: right !important; 
    }

    Best regards,
    Mike

    Hey ryandewitt,
    I’m pretty sure you should be able to do this, because the layerslider has html layers that will accept shortcodes. So probably your best bet is to find a woocommerce product search plugin with a category selector that has a shortcode.
    The first one I found was Advanced Woo Search that says it has all of this, there is also a official WooCommerce Product Search that has extensive shortcode options
    I have not used any of these, but I recommend you try them out and the many other available and try their shortcodes in the layerslider to find one that works the way you want. I’m sure they can be styled to match your mockup afterward.
    Hope this helps.

    Best regards,
    Mike

    in reply to: Search lens icon alignment #1021112

    Hey profumopuntoit,
    To add a separator on the right side of “Forum”, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .av_seperator_small_border .av-main-nav>li#menu-item-61944>a>.avia-menu-text {
        border-right-style: solid !important; 
        border-right-width: 1px !important; 
        padding-right: 13px !important; 
    }

    Best regards,
    Mike

    in reply to: Set datepicker input field to read only #1021110

    Hi,
    Sorry for the late reply, I took a look at your date picker with Chrome, Firefox, and Edge on Windows 10, can I was unable to enter a date with the keyboard. What browser are you using?
    Please try this code in the General Styling > Quick CSS field:

    #top.page-id-168 #avia_5_1.avia_datepicker {
    cursor: none !important; 
    }

    Best regards,
    Mike

    in reply to: Cache and merge not working – not using cache plugin #1021107

    Hi,
    I tried to login to take a look, but the login isn’t working, please check.

    Best regards,
    Mike

    in reply to: Contact form not working #1021104

    Hi,
    Glad to hear, and thanks to @Evendril :)

    Best regards,
    Mike

    in reply to: Blog Title Font Size #1021100

    Hi,
    I took a look at your site and found the titles to be quite small, please try clearing your browser cache.
    Please see the screenshot in Private Content area.

    Best regards,
    Mike

    Hey zizibe1,
    Unfortunately Google views these settings or “rules” as a “suggestion”
    Try going to your Google Search Console and use the “Remove URL Tool” you can read more about it here

    Best regards,
    Mike

    in reply to: content boxes empty #1021098

    Hey Kathy,
    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: Elements overlapping #1021096

    Hi,
    Glad to hear, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    And if there are features that you wish Enfold had, you can request them and vote the requested ones 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: Contact form not working #1021094

    Hi,

    @Evendril
    thanks for the suggestion, this often solves the issue. @SF-media please give this a try and let us know if it helps.

    Best regards,
    Mike

    in reply to: Elements overlapping #1021093

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

    #top .yith-wcbk-booking-form #ui-datepicker-div {
    position: relative !important; 
    }

    Best regards,
    Mike

    in reply to: mobile header #1021089

    Hey june,
    There is not a setting to make the mobile header sticky, but if you include the code in the General Styling > Quick CSS field from our documentation it will work: Sticky header on mobile

    Best regards,
    Mike

    in reply to: mobile menu #1021085

    Hey june,
    I took a look at your page and menu items and found that you had many of each ID that were the anchors for the links, this causes problems for the page because you can only have one unique ID on each page. I see that you have many of each section, and ID, because you wanted to hide some elements on different screen widths. So the challenge is to group sections together to share menu anchors, I achieved this on your page by adding code block elements before each group and including the anchors like this:

    <a class="anchor" id="about"></a>

    Your anchors are now working, Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Lightbox in Masonry gallery not showing correct #1021074

    Hi,
    Please try this code in the General Styling > Quick CSS field, or in the WordPress > Customize > Additional CSS field:

    .inner-container {
        height: auto !important; 
    }

    Best regards,
    Mike

    in reply to: Enable shrinking header for ipads/tablets #1021073

    Hey slekiz,
    I took a look at your page and see that your sticky and shrinking header starts at 768px width, which is the standard width for tablets & iPads so it should work for the iPad. I do notice that at that width your site redirects to a url that starts with “https://m.&#8221; (please see url in the Private Content area) which is a mobile version of your site that doesn’t include the sticky and shrinking header.
    I believe this is a plugin that is causing this, please try disabling this feature so the built-in responsiveness of the site can manage the elements and the screen widths.
    After disabling, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Large gaps before and after color sections #1021070

    Hey norcalnathan,
    I took a look at your page and found this css in your style.css causing most of the issue:

    /* make footer expand more to bottom */
    .entry-content-wrapper {
        min-height: 1500px;
    }

    Please remove and clear your browser cache, then let us know if that solves.
    I couldn’t login and test due to “Sucuri Website Firewall” Please see the screenshot in Private Content area.

    Best regards,
    Mike

    in reply to: Text lines get too mutch spaces between words on mobile #1021058

    Hi,
    I took another look but I was not able to find a post with the justified content, I assume you have already changed many of your posts, do you wish to continue to make the changes, or would you like some css to adjust the remaining posts?
    If you would like some css, please link to a couple of posts that has not been changed yet.

    Best regards,
    Mike

    in reply to: Remove Enfold logo in General Styling – Main Menu #1021050

    Hi,
    Try going to this folder in your theme and replacing the image with your own that is the same size.

    /enfold/images/layout/logo_modern.png

    Best regards,
    Mike

    in reply to: Change name of Avia layout builder on page builder #1021048

    Hey bobfurgo,
    We don’t have an official way to do this, and I’m not sure of any issues it may cause, but if you thoroughly test this before trying this on a production site, you may find this works for you:
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    	function custom_rename_script(){
    		?>
    		<script>
    	  jQuery(window).load(function(){   
    		jQuery("#avia_builder h2.hndle.ui-sortable-handle span").text("Enfold Builder");
    	  });
    	  </script>
    		<?php
    		}
    	add_action('admin_head', 'custom_rename_script');

    Best regards,
    Mike

    in reply to: Lock avia builder #1021043

    Hey bobfurgo,
    Sorry, that feature is not available yet.

    Best regards,
    Mike

    in reply to: HELP: SSL changed columns layout #1021038

    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: Cant update my theme…? #1020947

    Hey idaandersenlang,
    This is because Theme Forest has changed their API key and we are integrating a new solution, we recommend manually updating for right now. The easiest way is to try using the Update Theme and Plugins from Zip File plugin. It will allow you to upload the enfold.zip file from your Theme Forest account to update. Please be sure to download the “Installable WordPress file only”.
    Please use your webhost full backup tool first, as good practice.
    Another method is to update via FTP, but you will need to remove the old theme folder “enfold” first then upload the new “enfold” folder at /wp-content/themes/enfold/
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors. The plugin above handles this correctly.

    If this doesn’t help we will be happy to assist with a manual update, if you include a admin login & ftp access, & a link to your updated theme files in the Private Content area.

    Best regards,
    Mike

    Hey Robert,
    To change the color of the menu I recommend using your IF statement to assign the css for the menu colors with !important; I also recommend removing any menu colors from your style.css or Quick CSS field and using those colors in your ELSE statement.
    Here is an example of adding your menu css in the head conditionally:

    add_action('wp_head', 'change_menu_color');
    
    function change_menu_color() {
        if (is_page(array(17, 19, 1, 11))) { ?>
            <style>
                /* your css here */
             </style> <?php
        }
    }
    

    just do this for each of your colors.

    Best regards,
    Mike

    in reply to: HELP: SSL changed columns layout #1020931

    Hey Munford,
    Sorry for the late reply, I took a look at your site and found the first rule in your style.css was setting your columns to 100% wide.

    .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
        margin: 0;
        margin-bottom: 40px;
        width: 100%;
      }

    I commented this rule out and now your site is working correctly again. Please clear your browser cache and check.

    Best regards,
    Mike

    Hey Sovik,
    Thank you for your explanation, your code looks valid, Well done on finding your solution.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

Viewing 30 posts - 24,481 through 24,510 (of 34,601 total)