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. Bug Reports
  3. SVG hidden below 1440 px width

SVG hidden below 1440 px width

Scheduled Pinned Locked Moved Bug Reports
13 Posts 2 Posters 369 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.
  • arminunruhA Offline
    arminunruhA Offline
    arminunruh
    Global Moderator
    wrote on last edited by
    #4

    maybe it is because of your custom css:
    Screenshot 2022-09-27 at 14.10.27.png

    but all the lines are below 1 px.
    Instead of scaling I placed the full width svg. It displays correctly.

    well that is even worse because the lines will disappear once their width is rounded to less than half a pixel i guess

    and the widths of the lines are dependent on the widths of the browser because the lines are inside a svg image and that image is 100% width of the browser

    S 1 Reply Last reply
    0
    • arminunruhA arminunruh

      maybe it is because of your custom css:
      Screenshot 2022-09-27 at 14.10.27.png

      but all the lines are below 1 px.
      Instead of scaling I placed the full width svg. It displays correctly.

      well that is even worse because the lines will disappear once their width is rounded to less than half a pixel i guess

      and the widths of the lines are dependent on the widths of the browser because the lines are inside a svg image and that image is 100% width of the browser

      S Offline
      S Offline
      Stanczyk
      wrote on last edited by
      #5

      @arminunruh

      Unfortunately, this is not the problem.

      I've noticed that the problem only occurs when google maps are added to the page.

      The maps cause the ajax to be disabled.
      As a result, the text bouncing when loading.

      Do you perhaps know of a solution to keep the ajax functionality on this page?

      S 1 Reply Last reply
      0
      • S Stanczyk

        @arminunruh

        Unfortunately, this is not the problem.

        I've noticed that the problem only occurs when google maps are added to the page.

        The maps cause the ajax to be disabled.
        As a result, the text bouncing when loading.

        Do you perhaps know of a solution to keep the ajax functionality on this page?

        S Offline
        S Offline
        Stanczyk
        wrote on last edited by
        #6

        @arminunruh
        Do you have any idea why footer isn't responsive as main layout?

        I have different background image for offers pages. It had that same resolution like on main background image, but seems different.

        It's visable on different resolutions like 18:9 (matebook) and macbook pro 2021 (3024 x 1964 px)

        f02c7c2e-3a10-4e8b-9dce-5f21593eb428-image.png

        http://archiwum.blobtech.pl/serwis-hydrauliki-silowej/

        1 Reply Last reply
        0
        • arminunruhA Offline
          arminunruhA Offline
          arminunruh
          Global Moderator
          wrote on last edited by
          #7

          hey there!

          so that one element is jumping because elements that element is aligned to 1/3rd or 2/3rds vertically in a row.
          elements that are aligned like that get positioned using javascript so they jump around.

          the website is rlly nice!

          footer:
          i cant seem to see any issue. can you explain the footer issue in more detail?
          i think i dont understand what you mean

          S 1 Reply Last reply
          0
          • arminunruhA arminunruh

            hey there!

            so that one element is jumping because elements that element is aligned to 1/3rd or 2/3rds vertically in a row.
            elements that are aligned like that get positioned using javascript so they jump around.

            the website is rlly nice!

            footer:
            i cant seem to see any issue. can you explain the footer issue in more detail?
            i think i dont understand what you mean

            S Offline
            S Offline
            Stanczyk
            wrote on last edited by
            #8

            @arminunruh
            I couldn't drop the mp4 file here,
            so I uploaded it to our www

            Link:
            https://www.yos-studio.com/wp-content/uploads/2022/11/blobtech-mp4-resolution.mp4

            The problem occurs in cases where the resolution / aspect ratio of the screen is different from the standard (16in wide).
            For example, 18:9

            Thanks!

            1 Reply Last reply
            0
            • arminunruhA Offline
              arminunruhA Offline
              arminunruh
              Global Moderator
              wrote on last edited by
              #9

              so i watched the video and everything looks correct in the video

              i dont see the problem

              i think i dont understand the issue

              S 1 Reply Last reply
              0
              • arminunruhA arminunruh

                so i watched the video and everything looks correct in the video

                i dont see the problem

                i think i dont understand the issue

                S Offline
                S Offline
                Stanczyk
                wrote on last edited by
                #10

                @arminunruh

                The next video on 16:10 aspect ratio
                https://www.yos-studio.com/wp-content/uploads/2022/11/blobtech-16x10-resolution.mp4

                On 18:9 aspect ratio
                https://www.yos-studio.com/wp-content/uploads/2022/11/blobtech-mp4-resolution.mp4

                • photos do not fit in lines on offer pages
                • the lines from the footer are closer to the centre than they should be
                1 Reply Last reply
                0
                • arminunruhA Offline
                  arminunruhA Offline
                  arminunruh
                  Global Moderator
                  wrote on last edited by arminunruh
                  #11

                  thanks finally i understand what you mean!

                  well your svg i think has css like

                  height: 100vh;
                  width: auto

                  so the svg position always changes based on the height of the browser

                  however, lay theme layouts are based on widths not heights.
                  so of course they wont align with your svg. they would only align with your svg if the aspect ratio of the browser is the same as the aspect ratio of the svg, which is probably the case for 16:9

                  the solution is you need to use different css for your svg. it needs to have its width set and its height in auto

                  sth like

                  width: 100%;
                  height: auto

                  S 1 Reply Last reply
                  0
                  • arminunruhA arminunruh

                    thanks finally i understand what you mean!

                    well your svg i think has css like

                    height: 100vh;
                    width: auto

                    so the svg position always changes based on the height of the browser

                    however, lay theme layouts are based on widths not heights.
                    so of course they wont align with your svg. they would only align with your svg if the aspect ratio of the browser is the same as the aspect ratio of the svg, which is probably the case for 16:9

                    the solution is you need to use different css for your svg. it needs to have its width set and its height in auto

                    sth like

                    width: 100%;
                    height: auto

                    S Offline
                    S Offline
                    Stanczyk
                    wrote on last edited by
                    #12

                    @arminunruh

                    Hey Armin

                    I didn't use any css to change width/height.
                    Just used element grid and streched to 100% width.

                    Should I use another option?

                    Tried to change svg with css to
                    width: 100%;
                    height: auto

                    but nothing changed
                    https://blobtech.pl/modernizacje/

                    1 Reply Last reply
                    0
                    • arminunruhA Offline
                      arminunruhA Offline
                      arminunruh
                      Global Moderator
                      wrote on last edited by
                      #13

                      ok you set the svg as a background image of your body

                      i think that wont work properly. the svg size always needs to be width: 100% and height: auto and i guess that wont work when setting the svg as a background image

                      you need to insert the svg into lay options → custom css #& html → custom html at bottom

                      then style the svg to be
                      width: 100%; height: auto;

                      but as i said much earlier:
                      i think you need to insert html divs into lay options → custom css #& html → custom html at bottom

                      then use css to make these divs 1 px wide, and use position fixed to place these divs correctly

                      i think you should have just tried doing that instead of doing it your way

                      because the way you did it, the svg width is percentage based, your 1px lines in your svgs will change their widths because they are contained in the svg and the width of the svg depends on the width of the browser

                      please next time try the thing i suggest :D sry for the rant

                      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
                      V
                      vraagje2
                      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