Forum Replies Created

Viewing 30 posts - 30,181 through 30,210 (of 34,860 total)
  • Author
    Posts
  • in reply to: Enfold Latest News Widget #897109

    Hi,
    Glad we were able to help, shall we close this then?

    Best regards,
    Mike

    in reply to: Make Product Images Larger on Single Product Page #897107

    Hi,
    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,
    Mike

    in reply to: Enfold Latest News Widget #897105

    Hi,
    Try:

    h2.post-title.entry-title a {font-size: 20px !important;}

    adjust the number to suit.

    Best regards,
    Mike

    in reply to: Form submissuon: how to scroll to the first error? #897104

    Hi,
    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,
    Mike

    in reply to: Form submissuon: how to scroll to the first error? #896976

    Hi,
    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,
    Mike

    in reply to: Should I use a Child Theme? #896974

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.
    Nice work, by the way :)

    Best regards,
    Mike

    in reply to: Make Product Images Larger on Single Product Page #896972

    Hey 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,
    Mike

    in reply to: Adding a Backround Color for Left Menu Item on Mouse Over #896967

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

    li.current-menu-item:hover {background: red !important; }

    Best regards,
    Mike

    in reply to: Moving from sandbox to live domain with Enfold #896964

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

    Best regards,
    Mike

    in reply to: Reduce line height #896962

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

    Best regards,
    Mike

    in reply to: Need help #896961

    Hey comprompt,
    When you click the link “some important page has been removed by request” what does it say?

    Best regards,
    Mike

    in reply to: Font Tenby Five #896959

    Hey 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,
    Mike

    in reply to: Pictures befor text on mobile #896958

    Hey 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,
    Mike

    in reply to: Reduce line height #896955

    Hey 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,
    Mike

    in reply to: Space between 3 columns #896954

    Hey Milan,
    Do you have an example in place? I tried logging in but it was disabled.

    Best regards,
    Mike

    in reply to: Footer #896953

    Hey Dildoreus,
    Add [nolink] to the end of your copyright line under Theme Options -> Footer

    Best regards,
    Mike

    in reply to: Moving from sandbox to live domain with Enfold #896952

    Hey siestajoye,
    Deleting the development site is enough.

    Best regards,
    Mike

    in reply to: Menus will not go away #896945

    Hi,
    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,
    Mike

    in reply to: Events calendar not compatible with enfold theme #896940

    Hey 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.
    2018-01-13_142119

    Best regards,
    Mike

    in reply to: shortcodes.js?ve 404 #896937

    Hi,
    Thank you for sharing your solution in the other thread, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Cart icon doesn't seem to appear #896935

    Hi,
    Thank you for sharing your solution, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Footer #896933

    Hey P.S. van der Veer,
    Please add [nolink] to the end of your copyright line under Theme Options -> Footer

    Best regards,
    Mike

    in reply to: Can't import Enfold 2017 demo #896927

    Hey 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 tutorial

    Best regards,
    Mike

    in reply to: Cart icon doesn't seem to appear #896925

    Hi,
    Yes that was a good idea, and thanks for that, but both of these issues are very odd. Did you say you migrated this from your localhost? Did you use a plugin to do so, which?
    I wonder if your migration would cause the same errors on my localhost?

    Best regards,
    Mike

    in reply to: shortcodes.js?ve 404 #896924

    Hi,

    I just realized that we are working on two threads & two issues on the same page, the other issue with the missing cart text, perhaps this is a factor for it. Let’s see if we can get the 404’s fixed first.

    I see the paths look correct but still a 404, Can you please include a admin login and FTP access in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Cart icon doesn't seem to appear #896921

    Hi,
    I just realized that we are working on two threads & two issues on the same page, the other issue with the 404 for the js, perhaps that is a factor here. Let’s see if we can get the 404’s fixed first.

    Best regards,
    Mike

    in reply to: Cart icon doesn't seem to appear #896920

    Hi,
    I can understand that, yet I’m not sure why your install has stripped out the text and a clean install has the text.
    If you could try disabling your plugins and any custom functions, if that doesn’t change it, try reinstalling woocommerce, perhaps there is a corrupt file, otherwise can you please include a admin login and FTP access in the private content area so we can take a closer look.
    Also in our tests can we disable your plugins and any custom functions?

    Best regards,
    Mike

    in reply to: Active menu indicator background #896919

    Hi,
    Please remove this code from your custom css:

    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
        border-color: #000000;
    border-width: unset;
    }
    .current_page_item a {
            color:#ffffff!important;
    	background:black!important;
    
    }

    Then add this:

    .current_page_item span.avia-menu-text {
        background-color: #000!important; 
        color:#ffffff!important;
    }
    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
        padding-left: 0px !important; 
    }
    .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text {
        border-color: transparent!important; 
    }

    in order to get this to work I had to remove the “pipes” between the menu items, because they are actually borders so the background-color was stretching to them.

    Best regards,
    Mike

    in reply to: Enfold Latest News Widget #896913

    Hi,
    Thank you for the link, Try this code in the General Styling > Quick CSS field:

    h2.post-title.entry-title a {color: #000 !important; }

    Best regards,
    Mike

    in reply to: Should I use a Child Theme? #896912

    Hi,
    When I logged in you title was showing but the subtitle was below behind the slider, I added this in the General Styling > Quick CSS field to solve:

    #top .logo-subtitle {
        color: #aaa !important;
        font-size: 12px !important;
        top: 30px !important;
        position: absolute;
       white-space: nowrap;
    }

    it now shows on all devices, please clear your browser cache and check.

    Best regards,
    Mike

Viewing 30 posts - 30,181 through 30,210 (of 34,860 total)