Viewing 30 results - 2,881 through 2,910 (of 11,206 total)
  • Author
    Search Results
  • #1165496
    #1165469

    same here…even Enfold itself:

    #1165016
    Mickyhood
    Participant

    I wanted to create a button with transparent background, 3px border and color text # 80c41c. How can I do this by inserting a class into the enfold avia builder element?

    #1165003

    Hi Victoria,
    thanks for helping me out!

    The button is now created and i tested with the code your’re providing here: “Menu Centered” but cant find the right modification without destroying the current process with overlapping and so on. :)

    I think now I just need to modify this snippet right?

    /************************************
    
     Add a widget area on the right side
     Logo left, Menu center, Widget right
    
    *************************************
    
    CSS Settings:
    
    » Initiate Flexbox
    » Topbar
    » Header
    » Logo
    » Menu
    » Widget
    » Social icons
    » Search
    » Cart icon
    
    ***********************************/ 
    
    /*--------------------------------
    
    » Initiate Flexbox
    
    --------------------------------*/
    
    /* Header */
    .responsive #top #header,
    /* Top bar */
    .responsive #top #header #header_meta,
    /* Search icon */
    .responsive #top #header #menu-item-search a,
    /* Cart icon */
    .responsive #top #header a.cart_dropdown_link,
    /* Social icon */
    .responsive #top #header #header_main nav .social_bookmarks,
    /* Logo */
    .responsive #top #header #header_main .inner-container .logo,
    /* Main menu, cart and social icons */
    .responsive #top #header #header_main .inner-container .main_menu,
    /* Widgets */
    .responsive #top #header #header_main .inner-container .widget,
    /* Header inner container */
    #top #header #header_main .container.av-logo-container .inner-container {    
        display: flex;
        position: relative;
    }
    
    /*--------------------------------
    
    » Topbar
    
    --------------------------------*/
    
    /* Top bar */
    
    .responsive #top #header #header_meta {
        flex-basis: 100%;    
    }
    
    /*--------------------------------
    
    » Header
    
    --------------------------------*/
    
    /* Height */
    
    #top #header #header_main .container.av-logo-container {
        height: inherit;   /* Auto height: Header takes the height of the contents */
    }
    
    /* Header inner container */
    
    #top #header #header_main .container.av-logo-container .inner-container {
      height: inherit; 
      position: relative !important;
      flex-wrap: nowrap;
      justify-content: space-between;
    }
    
    /* Wrappers 
    --------------------------------*/
    
    /* Header content and Topbar */
    
    .responsive #top #header {
        flex-wrap: wrap;
    }
    
    /* Header contents: Logo, Menu, Social Icons and Widgets. */
    
    .responsive #top #header #header_main {
        flex-basis: 100%;    
    }
    
    /* Transparent header 
    --------------------------------*/
    
    .responsive.html_header_transparency #top #wrap_all #header {
        position: absolute;
    }
    
    /* Main content: 
    -----------------------*/
    
    .responsive #top #main { 
        padding-top: 0px; /* Gap between the content and header */
    } 
    
    /* Fixed header 
    --------------------------------*/
    
    /* Fixed header */
    
    .html_header_sticky.html_header_transparency #top #wrap_all #header,
    .html_header_sticky #top #wrap_all #header { 
        position: fixed; 
    } 
    
    /* Fixed header and page content gap. 
       Padding value should be same as the fixed header height. */
    
    .html_header_sticky:not(.html_header_transparency) #top #wrap_all #main { 
        /*padding-top: 145px !important; */
    } 
    
    @media only screen and (max-width: 767px) {
    .html_header_sticky #top #wrap_all #main {
        /*padding-top: 145px !important; */
    }}
    
    /*--------------------------------
    
    » Logo
    
    --------------------------------*/
    
    /* Logo */
    
    .responsive #top #header #header_main .inner-container .logo {
        order: 0;
        flex-basis: auto;
        /*width: auto;*/
    
        /* Define scalable min width of the logo on small screens */
        min-width: 100px;
        /* Define scalable max width of the logo on big screens */
        /* Logo width: (auto | 100% | px );  Set auto to display the uploaded image size */
        max-width: 180px;
        
        z-index: 9;
    }
    
    /* Logo image size */
    
    .responsive #top #header .logo,
    .responsive #top #header .logo a,
    .responsive #top #header .logo img {
        width: auto;
            
        /* Height specification is not required. It is proportional to the max width of the logo */
        height: auto;    
        align-items: center;
        align-self: center;
        justify-content: center;
    }
    
    /* Vertically center transparency logo */
    
    .responsive #top #header .logo span img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /*--------------------------------
    
    » Menu
    
    --------------------------------*/
    
    /* Menu outer container: Menu with siblings cart and social icons */
    
    .responsive #top #header #header_main .inner-container .main_menu {
        order: 0;
        flex-basis: auto;   /* Use calc to minus the width of the logo */
        align-items: center;
        align-self: center;
    }
    
    /* Navigation */
    
    #header .av-main-nav {
        display: flex;
        flex-wrap: nowrap;
    }
    
    /*  Activate burger menu  */
    
    @media only screen and (max-width: 1000px) {
        #top #header .av-main-nav>li.menu-item {
            display: none!important;
        }
        #top #header .av-burger-menu-main {
            cursor: pointer;
            display: block!important;
        }
    }
    
    @media only screen and (max-width: 767px) {
    
    /* Mobile menu position fix */
    .responsive #top .av-logo-container .avia-menu {
        display: flex!important;
        align-items: center;
    }}
    
    /* Mega menu position fix */
    #header li .avia_mega_div,
    #header li:hover .avia_mega_div {
        right: 0 !important; /* submenu position */
        left: auto!important; /* submenu position */
        max-width: 50vw;
    }
    
    /*--------------------------------
    
    » Widget
    
    --------------------------------*/
    
    /* Widgets */
    
    .responsive #top #header #header_main .inner-container .widget {
        order: 0;
        flex-basis: auto;
        padding: unset;
        clear: none!important;
    
        align-self: center;
        align-items: center;
        z-index: 1;
    
    }
    
    .responsive #top #header #header_main .inner-container .widget>div {
        width:100%;
        line-height: 14px;
        padding:0 10px;
    }
    
    /*--------------------------------
    
    » Social icons
    
    --------------------------------*/
    
    /* Flex support and position fix */
    .responsive #top #header #header_main nav .social_bookmarks {
        display: flex;
         top: auto;
         margin-top: 0;
         align-items: center;
    }
    /* Inherit height for flex alignment */
    #top .av-logo-container .social_bookmarks li {
        height: inherit;
    }
    
    /*--------------------------------
    
    » Search 
    
    --------------------------------*/
    
    /* Your styles here */
    
    /*--------------------------------
    
    » Cart 
    
    --------------------------------*/
    
    /* Cart position fix */
    
    #top #header #header_main #menu-item-shop a.cart_dropdown_link {
        height: auto;
    }
    
    @media only screen and (max-width: 767px) {
        .responsive #top #menu-item-shop.cart_dropdown {
            display: flex;
            align-items: center;
        }
        .cart_dropdown .dropdown_widget .avia-arrow {
            display: none;
        }
    }

    Thank you very much!

    #1164996
    MJM
    Participant

    Hello,

    I followed the directions here to add a button to my main menu, but have a couple things I can’t figure out:

    1. Is there a way to remove the mobile burger icon entirely? This is just a landing page, so I don’t actually need a menu at all.
    2. When the menu shrinks, is there a way to keep the logo left-aligned like it normally does before I added the extra code?

    Let me know if you can help, thank you!

    #1164882
    Horst
    Guest

    Hello Yigit,

    In the Enfold Demos one can see that enfold was integrated in the presentation of woocommerce. Enfold probably overwrites the layout, such as the buttons.

    we want to use the enfold theme without changing the presentation on the shopoverview page and the product page.

    can I disable the woocommerce part of the enfold theme? If so, how does it work? i want to use the child theme to do this because its save for updates (maybe i can add some code into funktion.php to disable the theme part of enfold who change something in woocommerce).

    our target is to show woocommerce like having no special theme.

    thanks and best regards,
    Horst

    #1164781

    Hello,

    What do you mean by “or you can use a float left class which you can use for the buttons”, I do not understand.

    I have created a page http://maastrichtvooriedereen.nl.transurl.nl/test-enfold/ in which I show what I mean.
    The 2 blocks must appear in the white field directly below the text

    I send credentials and maybe you can / may you place it in the right way so that I can see how to do this.
    Thanks in advance and regards Tom

    #1164614

    Hi kracklt,

    Thank you.

    Please remove this

    Image 2019-12-10 at 20.41.14.png

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top #header .mega_menu_title {
        font-size: 26px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1164511
    TargardShop
    Participant

    Hi

    I’m using Enfold with Enfold child theme.
    I have a problem with Woocommerce add to cart button not showing at product page, but showing on Shop page (only)

    Tried to disable all plugins but no luck.

    What hepled was changing defaul template from Enfold to Woocommerce’s template Storefront and now is visible.
    So at my opinion is a problem with Enfold theme.

    Plese help

    • This topic was modified 6 years, 3 months ago by TargardShop. Reason: Changed words in sentence, so now is more clear

    look to your other topic.
    You have your single Books in Posts – so use first Blog Element to show these Posts in a Grid view.

    More and more I come to the conclusion that you may not have discovered the Enfold typical editor yet.
    With your 18 topics, that might be the case.
    First of all I recommend you to disable the Block Editor (Gutenberg). I find this only confusing in connection with Enfold.
    This can be done under Dashboard – Enfold (or Enfold Child) – Theme Options = Select Your Editor

    Then you have a button below the Title input field of each Editor Page ( Pages / Posts/ Portfolio) : Advanced Layout Editor. If you press this button, then these Advanced Layout Builder Elements ( ALB Elements) will appear above the layout window (sometimes this is not quite clear in the theme because Avia Layout Builder is also used as a name).

    This is indeed the great strength of this theme. An intuitive layout design via drag and drop; sometimes with a little too many settings, but most of them are quite useful and have grown over time.

    #1164228

    Hey sabsab,

    Maybe, in this case, it is better to add the widget area to the header and place the button on the widget there, we will help you position it in the right place.

    Here are the docs for you:

    Best regards,
    Victoria

    Hallo Victoria,

    habe den Editor umgestellt und dafür bekommen ich diese Fehlermeldung:
    Failed to load plugin url: https://meineurl.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/js/avia-tinymce-buttons-4.js

    hier geht es zu, Screenshot

    Danke für ihre Unterstützung
    Ernest

    #1164135

    Hi kensingtoncyprus,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    @media only screen and (min-width: 1024px) {
        #text-7 {
            margin-right: 25px;
        }
    }
    #text-7 .avia-button {
        background-color: #b43a90;
        color: #ffffff;
        border-color: #921877;
    } 
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1164089

    I still dont know – and i cant figure it out neither in Enfolds Tutorial nor in @guenter |s explanation how i provide a user the buttons for accepting, refusing certain cookies

    here are some detailed questions:
    1: What is “Auto Reload”? When do i need it? Why?
    2: It seems as if – at least for the essentiell cookies – the default is on “Accept” – otherwise the button would not be green. (please explain!!) – its the result of [av_privacy_allow_cookies]
    http://marcusjeroch.de/screens/dsgvo3.jpg

    #1164058
    DFME
    Participant

    Hi,
    wie use the latest Enfold with WP 5.3. We put a slideshow on the frontpage using the advanced layout builder. One slide was missing. Troubleshooting took me quite some time. My customer put a button on the slide and used “>>>” as the label. I reckon, this input wasn’t sanitized correctly and caused an error. The slide was completely missing in the source code. Even changing the label did not do the trick. I created a new slide, same image, same caption, same options but a different label: Voilà, everything works like a charm. Could you look into it, please! “>>>” might not be the best label in the world. However, it should not break the function.
    Mike

    gosells
    Participant

    Hallo,
    ich habe heute die WordPress 5.3 und Enfold Theme neu installiert.

    1. Die Seite ist seid der installation sehr langsam geworden. Sind keine Plugins installiert.

    2. Bekomme folgende Fehlermeldung:
    Failed to load plugin url: https://meineurl.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/js/avia-tinymce-buttons-4.js

    So sieht die Bespielseite aus

    Was kann ich dagegen tun?

    Freue mich auf ihre Rückmeldung
    Ernest

    • This topic was modified 6 years, 3 months ago by gosells.
    #1164031

    you can use the implemented waypoint script but have your own settings with child-theme functions.php.

    for some enfold animations it is only necessary to have fired it once the point of triggering is passed. But sometimes it is nice to include if scroll-direction is important:
    f.e. if you like to move a container from off-screen to the center – and on scrolling up it will go off-screen again

    for that i use to toggle a class to which i can give the animation rules. The element to observe gets a custom class ( f.e. inview )

    function scroll_up_down_change() {
    ?>
    <script>
        (function($) {
    	var element_to_animate = $('.inview');
    	element_to_animate1.waypoint(function(direction) {
    		if (direction === 'down') {
    			$(this.element).addClass('animate-now');
    		}
    	 },{offset: '90%'}
    	);
    	element_to_animate1.waypoint(function(direction) {
    		if (direction === 'up') {
    			$(this.element).toggleClass('animate-now');
    		}
    	 },{offset: '90%'}
    	);			  
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'scroll_up_down_change', 9999);

    then you can play with offset too.
    By the way i believe the 100% offset is if it comes on the bottom into view – so maybe the 90% will do the trick on the change above

    See here the last button on that page uses 90% : https://webers-testseite.de/buttons/

    and an enfold animation – but you can have your own keyframes aswell – just define it for the toggled class.
    Or: See here how it can be used to change header_bg background-color on color-section dependencies.: https://kriesi.at/support/topic/menu-bar-with-dynamically-changing-colors-referencing-the-background/#post-1161520

    #1164021
    Jan
    Participant

    Hello, I found a topic with exactly the same request, but the solution doesn’t work anymore:
    https://kriesi.at/support/topic/configuring-previous-next-buttons-for-portfolio-items/

    Beside the fact that the lines of the functions-enfold.php, which should be changed, are in line >600 now, unfortunately the changes doesn’t work.

    Is there a way to solve the problem today using a child theme? Thank you!

    • This topic was modified 6 years, 3 months ago by Jan.

    Hi Victoria,
    i should take it out becaude the onepager didint work anymore so now i tried the cookie Banner from enfold on the site below what looks quiet good the only problem is that the details of the cookies are missing.The name of the cookie, where it comes from and how long it stays what should stand in the data protection.And when I clicked once on the settings the cookie information doesnt show up anymore like others do in the navigation as a cookie description. But here i have again the problem with the navigation too. When i click on the cookie Banner on the tab Datenschutzerklärung, then comes the page with some cookie information but from that page i cannot get back to the other navigation buttons.Just the Home button works. Hope you can understand what i mean :)

    many regards
    rixi.

    #1163715

    Hey Nathan,

    Refer to the following:

    Best regards,
    Jordan Shannon

    #1163683

    UPDATE – Spiderfly Elements
    I have updated the Spiderfly Elements to fix a couple of small bugs due to Enfold code updates with the “Edit Link Button”. The “App Card” element was updated to fix a couple of small bugs and to add both the Amazon and Windows app store badges as options. Finally, there is a new element called “App Store Badge” which will let you display the standard app store badges for directly linking to the various app stores. Choose between Apple, Google Play, Amazon, or Windows. It comes with various options like width control for both desktop and mobile layouts.

    For WooCommerce updates, please send me ideas. We all use this theme and WooCommerce differently, so other perspectives would be great so I can come up with some awesome new elements. With all the WooCommerce elements I have already, you have some finite control over the layout and look of your store, but there’s always room for more.

    As a reminder…I did have to break the elements up into two separate packs each sold separately. Count wise, the elements have grown to almost five times their original number and originally the price was just $15 when I first launched them. That was $15 for the Spiderfly Elements, ACF Elements, and WooCommerce Elements. With all the time and work that has gone into it over the past two years, I can’t justify that price or free re-downloading for life. Going forward, after purchase the download link will expire in 30 days and you will only be able to re-download twice. Obviously I will make exceptions in the event there are multiple bug fix updates in a row. Should that happen, just contact me direclty and I’ll hook you up with the updates by resetting your download limit. I’ll do my best to make it a point of doing so automatically for everyone who purchased the add-on pack(s) recently.

    If you have any questions or concerns, please don’t hesitate to contact me.

    #1163670

    Yeah, I was hoping it could have the exact same functionality as the open table button but keep consistent with my enfold buttons OR have it do that straight up from the navigation. When I try to add it to those things enfold/wordpress changes the code because it’s expecting a hard URL

    #1163447

    Hi Basils,

    It is weird because i’ve made a shortcode in the Enfold Child theme as told like here: https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#add-elements-to-alb

    But sadly I still can’t see a button at the events on the home page. Perhaps there is an error in the code? I do have to say that I tried to copy the code from https://kriesi.at/support/topic/portfolio-grid-add-read-more-button/ before contacting you guys few weeks ago. Perhaps the file didn’t save properly? I use FTP at the moment to update my files because of a wordpress error I can only fix after this website goes live (I know very anoying)

    Thanks in advance and kind regards,

    Jasper Boetekees

    #1163444

    I definitely would like some help with this. I have this javascript that just needs to be housed in an enfold button

    <script type=’text/javascript’ src=’//www.opentable.ca/widget/reservation/loader?rid=1057615&type=standard&theme=wide&iframe=true&domain=ca&lang=en-CA&newtab=false’></script>

    website is http://www.littlebirddimsum.com

    #1163439

    Hey rene,

    Thank you for using enfold – and for reporting this.

    Seems to be a not very common problem – so we will provide a filter that allows you to return a value you can customize. You can hardcode a fixed value in the fiter that is returned for all sites and when you need a new popup just change the returned value in the filter.

    As a quick fix:

    In helper-privacy.php line 1502 you find:

    
    $cookie_contents = md5( $cookie_contents ) . '||v1.0';
    

    Before this line add:

    
    $cookie_contents = apply_filters( 'avf_cookie_consent_for_md5', $cookie_contents, $message, $buttons );
    

    And in functions.php of your child theme add:

    https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/Privacy%20and%20Cookies/avf_cookie_consent_for_md5.php

    The filter will become part of the next update.

    Hope this helps you.

    If you need assistance let us know and we can do it for you.

    Best regards,
    Günter

    #1162986

    Hey FayeMcC,
    Sorry for the late reply and thanks for the example link.
    I believe you are looking at this one:
    2019-12-05-063832
    Please try Enabling the Avia Layout Builder Debugger and then pasting in this shortcode in a new page:

    [av_table purpose='pricing' caption='' av_uid='av-46vmngy']
    [av_row row_style='avia-heading-row' av_uid='av-45s5m2a'][av_cell col_style='avia-desc-col' av_uid='av-43cwysi']Plan[/av_cell][av_cell col_style='' av_uid='av-42aq0c2']Business[/av_cell][av_cell col_style='' av_uid='av-41352uq']Mega[/av_cell][/av_row]
    [av_row row_style='avia-pricing-row' av_uid='av-3yqto5u'][av_cell col_style='avia-desc-col' av_uid='av-3xek25e'][/av_cell][av_cell col_style='' av_uid='av-3vnbtpe']20$
    <small>per month</small>[/av_cell][av_cell col_style='' av_uid='av-3uktq0i']50$
    <small>per month</small>[/av_cell][/av_row]
    [av_row row_style='' av_uid='av-3s6wnpe'][av_cell col_style='avia-desc-col' av_uid='av-3qrslf6']Bandwidth[/av_cell][av_cell col_style='' av_uid='av-3pe4ef6']10 GB[/av_cell][av_cell col_style='' av_uid='av-3n7ojgy']Unlimited[/av_cell][/av_row]
    [av_row row_style='' av_uid='av-3lmbn1u'][av_cell col_style='avia-desc-col' av_uid='av-3jw4p76']Max File Size[/av_cell][av_cell col_style='' av_uid='av-3iz8pqq']50 MB[/av_cell][av_cell col_style='' av_uid='av-3hg3bz6']No Maximum[/av_cell][/av_row]
    [av_row row_style='' av_uid='av-3fo0nuq'][av_cell col_style='avia-desc-col' av_uid='av-3divj02']CPU[/av_cell][av_cell col_style='' av_uid='av-3cmw4du']3 GHZ[/av_cell][av_cell col_style='' av_uid='av-3am13de']5 GHZ[/av_cell][/av_row]
    [av_row row_style='' av_uid='av-386d89e'][av_cell col_style='avia-desc-col' av_uid='av-36r53de']Memory[/av_cell][av_cell col_style='' av_uid='av-35ggx9e']1024 MB[/av_cell][av_cell col_style='' av_uid='av-33k159u']4 GB[/av_cell][/av_row]
    [av_row row_style='avia-button-row' av_uid='av-32b228i'][av_cell col_style='avia-desc-col' av_uid='av-305sus2'][/av_cell][av_cell col_style='' av_uid='av-2yfxx0y'][av_button label='Get Business Plan' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='medium' position='center' icon_select='yes' icon='29' av_uid='av-2x7x4k2']
    
    [/av_cell][av_cell col_style='' av_uid='av-2vwhy82'][av_button label='Get Mega Plan' link='manually,http://' link_target='' color='theme-color-subtle' custom_bg='#444444' custom_font='#ffffff' size='medium' position='center' icon_select='yes' icon='44' av_uid='av-2t9lvtu']
    
    [/av_cell][/av_row]
    [/av_table]
    
    

    2019-12-05-070245
    This should give you the example table which you can examine the settings or adjust to suit your needs, and then paste into your page.

    Best regards,
    Mike

    #1162618

    Hey,

    You can add Vero icon by referring to this post – https://kriesi.at/documentation/enfold/social-share-buttons/#how-to-add-custom-social-icons-to-enfold-options. If you would like us to do it for you, please create temporary admin logins and post them here privately :)

    Best regards,
    Yigit

    KatrienW
    Participant

    Hi team Enfold

    After searching the forum and finding several similar issues and testing their solutions, I’m still struggling with two things on a client’s website.
    I provided credentials in the private content by the way.

    – When I try to upload a zip file for Flaticons, it doesn’t work. It did with the first file, but I needed another icon so I deleted that file and uploaded the new one with the new icon included. But only two icons out of a total of 11 eleven icons showed up in the page builder. I added this code to the .htaccess file

     <FilesMatch ".(ttf|otf|woff)$">
    <IfModule mod_headers.c>
    Header set Access-Control-Allow-Origin "*"
    </IfModule>
    </FilesMatch> 

    And while that fixed the issue of rectangular boxes with the first file, it doesn’t anymore with the second. So some help here would be much appreciated.

    – Second, I’m trying to change the background image for the scroll to top button. I entered this code in custom css:

    #scroll-top-link {
        background: url(‘https://warredal.wpstagecoach.com/wp-content/uploads/2019/12/acorn-42791_640-e1575362775251.png’) center center no-repeat;
    }
    
    #scroll-top-link:before {
        display: none;
    }

    But the only thing that did was make the button completely transparent. I need it to be this acorn image that I uploaded to the media library.

    Thanks in advance!

    • This topic was modified 6 years, 3 months ago by KatrienW.
    #1162173
    rixi
    Participant

    Hello,
    can you tell me where i can change the font color of the one button in the cookie banner which is automatically pink?
    nicht akzeptieren
    By enfold advanced styling i couldn`t find anything.

    many regards
    Rixi

    #1162036
    vmrayner
    Participant

    Hi,

    I upgraded my site’s theme to Enfold and used a Child theme. I set it up in a subdomain (new) where it was tested and worked fine. When I was happy with the result I moved the site to the WP subdirectory where our live site was located. I used Velvet Blues Update URL’s to change the URL’s in the site and updated permalinks. I also updated to the latest WordPress 5.3 at this point – All seemed fine until I wanted to make a change to the home page and found the changes would not save. The Avia Layout Builder gives a message that the changes were saved but the WordPress Update button just gets stuck and doesn’t save.

    This is only happening on the home page. I can save changes to other pages and changes to the theme. It s only the home page affected. I know that there are some URLs for images in that page that did not change correctly but I cannot edit them. Site is https://www.northshorefc.com.au/. I also changed version of PHP to 7.1 but this did not work.

    Can you please assist? Was there something I forgot to do?

    Thanks

    Viv

Viewing 30 results - 2,881 through 2,910 (of 11,206 total)