Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

Lay Theme Forum

  1. Home
  2. General Discussion
  3. Laytheme V3 footers issue

Laytheme V3 footers issue

Scheduled Pinned Locked Moved General Discussion
21 Posts 10 Posters 714 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • T Offline
    T Offline
    tkracauer
    wrote on Apr 18, 2020, 2:58 PM last edited by
    #1

    Some of my footers don't seem to want to load since updating to V3. Lemme know if there's a fix! Thanks!

    tomkracauer.com

    G 1 Reply Last reply Apr 18, 2020, 3:49 PM
    1
    • S Offline
      S Offline
      s.alc
      wrote on Apr 18, 2020, 3:12 PM last edited by
      #2

      Hi, I experience the same problem. I have one footer for all pages and it doesn't load the footer at all pages. astinleclercq.com Thanks!

      1 Reply Last reply
      0
      • O Offline
        O Offline
        openair
        wrote on Apr 18, 2020, 3:23 PM last edited by
        #3

        Hi, Great update although I'm also experiencing the problem of my footer having disappeared. It is fixed to the bottom of all pages/projects and functions as the menu. But having updated it has completely disappeared. Can't seem to get it back so far. Thanks in advance!

        1 Reply Last reply
        0
        • T tkracauer
          Apr 18, 2020, 2:58 PM

          Some of my footers don't seem to want to load since updating to V3. Lemme know if there's a fix! Thanks!

          tomkracauer.com

          G Offline
          G Offline
          gdk
          wrote on Apr 18, 2020, 3:49 PM last edited by
          #4

          same here... :(

          1 Reply Last reply
          0
          • M Offline
            M Offline
            michaelmaeder
            wrote on Apr 18, 2020, 3:51 PM last edited by
            #5

            I have similar issues. The overall CSS structure seems to have changed. A migration guide would be helpful in order to know how to change any customised CSS without the need to completely rewrite it from the ground up.

            A 1 Reply Last reply Apr 19, 2020, 11:35 AM
            1
            • M Offline
              M Offline
              mountainsuperstd
              wrote on Apr 18, 2020, 4:24 PM last edited by
              #6

              Yes, can confirm. Individual footers selected via pop-up not working. General via Lay Options work though.

              1 Reply Last reply
              1
              • A Offline
                A Offline
                arminunruh
                Global Moderator
                wrote on Apr 19, 2020, 11:34 AM last edited by
                #7

                if you update lay theme again now it should work again

                O 1 Reply Last reply Apr 19, 2020, 2:25 PM
                0
                • M michaelmaeder
                  Apr 18, 2020, 3:51 PM

                  I have similar issues. The overall CSS structure seems to have changed. A migration guide would be helpful in order to know how to change any customised CSS without the need to completely rewrite it from the ground up.

                  A Offline
                  A Offline
                  arminunruh
                  Global Moderator
                  wrote on Apr 19, 2020, 11:35 AM last edited by
                  #8

                  @michaelmaeder

                  the html structure needed to change for this new frontend to work.
                  there wont be a migration guide sorry

                  if you'd like to keep using the old version of lay theme and old versions of the plugins send an email to info@laytheme.com and i'll send you the files

                  1 Reply Last reply
                  0
                  • A arminunruh
                    Apr 19, 2020, 11:34 AM

                    if you update lay theme again now it should work again

                    O Offline
                    O Offline
                    openair
                    wrote on Apr 19, 2020, 2:25 PM last edited by
                    #9

                    @arminunruh Thanks Armin, I re-updated and it's partially fixed. However it's not quite working properly.
                    It should be fixed at the bottom of the screen all the time; now it's only doing that on one page: https://holdsworth.studio/information/
                    It should also show as a white bar, and now it's only text, which actually visually goes behind other content (see linked page again)
                    Any ideas?
                    Thanks for your help

                    this is the code in my custom CSS:
                    #footer-region{
                    position: fixed;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    }

                    1 Reply Last reply
                    0
                    • A Offline
                      A Offline
                      arminunruh
                      Global Moderator
                      wrote on Apr 19, 2020, 2:35 PM last edited by
                      #10

                      hey can you update again?
                      if your css is in "custom css for desktop" or "custom css for footer" your custom css should work again now.

                      if it doesn't please use !important like:

                      #footer-region{
                      position: fixed!important;
                      bottom: 0!important;
                      left: 0!important;
                      width: 100%!important;
                      }
                      
                      O 1 Reply Last reply Apr 20, 2020, 1:58 PM
                      0
                      • G Offline
                        G Offline
                        gdk
                        wrote on Apr 19, 2020, 2:45 PM last edited by
                        #11

                        @arminunruh said in Laytheme V3 footers issue:

                        !important;

                        Hi Armin, I did the update and it doesnt work. So I added the !important into my custom css and it still does not work. Also I deleted all my cache in the browser. Thats my CSS:

                        ::-webkit-scrollbar {
                        width: 0; /* For Chrome, Safari, and Opera /
                        display: none;
                        }
                        html, body {
                        -scrollbar-width: none; /
                        For Firefox /
                        -ms-overflow-style: none; /
                        For Internet Explorer and Edge */
                        overflow-y: hidden;
                        }
                        body{
                        margin: 0;
                        padding: 0;
                        min-height: 100%;
                        }
                        #grid {
                        height:auto!important;
                        }
                        #main-region, #footer-region {
                        width: 50%!important;
                        height: 100vh!important;
                        float: left!important;
                        overflow-y: scroll!important;
                        }

                        1 Reply Last reply
                        0
                        • A arminunruh
                          Apr 19, 2020, 2:35 PM

                          hey can you update again?
                          if your css is in "custom css for desktop" or "custom css for footer" your custom css should work again now.

                          if it doesn't please use !important like:

                          #footer-region{
                          position: fixed!important;
                          bottom: 0!important;
                          left: 0!important;
                          width: 100%!important;
                          }
                          
                          O Offline
                          O Offline
                          openair
                          wrote on Apr 20, 2020, 1:58 PM last edited by
                          #12

                          @arminunruh This worked ! thanks Armin.
                          One new little glitch with it though: when the pages load up, the text in the footer initially seem to load in the colour Red for a split second. Any thoughts there?

                          1 Reply Last reply
                          0
                          • arminunruhA Offline
                            arminunruhA Offline
                            arminunruh
                            Global Moderator
                            wrote on Apr 20, 2020, 2:18 PM last edited by
                            #13

                            well your css is loaded in the footer now thats why i think

                            if you want your css to be loaded upfront in head put it in "custom css" instead of in "custom css for desktop version" or "phone version" and then use !important

                            1 Reply Last reply
                            0
                            • G Offline
                              G Offline
                              gdk
                              wrote on Apr 20, 2020, 7:42 PM last edited by
                              #14

                              sadly it didnt work for me at all. I did the update and also try !important. @arminunruh

                              1 Reply Last reply
                              0
                              • arminunruhA Offline
                                arminunruhA Offline
                                arminunruh
                                Global Moderator
                                wrote on Apr 21, 2020, 4:02 PM last edited by
                                #15

                                @gdk does your css not work?
                                or does the footer not show up at all?

                                G 1 Reply Last reply Apr 21, 2020, 6:46 PM
                                0
                                • arminunruhA arminunruh
                                  Apr 21, 2020, 4:02 PM

                                  @gdk does your css not work?
                                  or does the footer not show up at all?

                                  G Offline
                                  G Offline
                                  gdk
                                  wrote on Apr 21, 2020, 6:46 PM last edited by
                                  #16

                                  @arminunruh dear armin - im using this construct of website which only works with your old version - https://gebhart.dk/wp-commerce

                                  1 Reply Last reply
                                  0
                                  • arminunruhA Offline
                                    arminunruhA Offline
                                    arminunruh
                                    Global Moderator
                                    wrote on Apr 22, 2020, 1:19 PM last edited by
                                    #17

                                    hey @gdk
                                    I have no idea whats going on on that website, can you please send your /wp-admin/ login data to info@laytheme.com with a link to this topic and a link to your website?

                                    1 Reply Last reply
                                    0
                                    • danielhagerD Offline
                                      danielhagerD Offline
                                      danielhager
                                      wrote on May 2, 2020, 2:03 PM last edited by
                                      #18

                                      @arminunruh
                                      Dear Armin
                                      Same here. The Footer is behind the content with the new version:
                                      Testsite: https://www.photography-film.danielhager.com/landscape/

                                      Custom CSS:
                                      #footer-region{
                                      position: fixed!important;
                                      bottom: 0!important;
                                      left: 0!important;
                                      width: 100%!important;
                                      }

                                      Thanks for your help.

                                      Warm Regards
                                      Daniel

                                      1 Reply Last reply
                                      0
                                      • H Offline
                                        H Offline
                                        hddunlap
                                        wrote on May 2, 2020, 4:07 PM last edited by
                                        #19

                                        I experienced the same issue. I was able to resolve it by giving the footer a position: relative and a higher z-index.

                                        1 Reply Last reply
                                        0
                                        • danielhagerD Offline
                                          danielhagerD Offline
                                          danielhager
                                          wrote on May 2, 2020, 8:18 PM last edited by
                                          #20

                                          @hddunlap
                                          Thank you so much.
                                          The "z-index: 10!important;" fix it.
                                          Perfect

                                          All the best.
                                          Daniel

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          I also code custom websites or custom Lay features.
                                          💿 Email me here: 💿
                                          info@laytheme.com

                                          Before you post:
                                          1. When using a WordPress Cache plugin, disable it or clear your cache.
                                          2. Update Lay Theme and all Lay Theme Addons
                                          3. Disable all Plugins
                                          4. Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"

                                          This often solves issues you might run into

                                          When you post:
                                          1. Post a link to where the problem is
                                          2. Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
                                          3. If the problem is difficult to explain, post screenshots / link to a video to explain it
                                          Online Users
                                          Forgot your key, lost your files, need a previous Lay Theme or Addon version? Go to www.laykeymanager.com
                                          laytheme.com
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Search