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. SVG Cursors Fix

SVG Cursors Fix

Scheduled Pinned Locked Moved General Discussion
29 Posts 13 Posters 4.4k 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
    #19

    u may need to restart your computer

    do u have a link?

    do u mean the custom arrows or the custom mouse cursor?
    if u update your carousel addon the issue with the custom arrow could be fixed mmh

    1 Reply Last reply
    0
    • arminunruhA arminunruh referenced this topic on
    • arminunruhA arminunruh referenced this topic on
    • clara_andreaC Offline
      clara_andreaC Offline
      clara_andrea
      wrote on last edited by
      #20

      Hello !

      Same problem here, the custom PNG doesn't work anymore. It appears when I move the mouse quickly but disappears.
      This is the link to a page of my website for an example:
      https://www.clara-andrea.com/tipik/

      Thanks !

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

        can u restart your computer, does it work then?

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

          and are you sure the image is not too big? less than 128px width and height

          1 Reply Last reply
          0
          • arminunruhA arminunruh referenced this topic on
          • R Offline
            R Offline
            rospax
            wrote on last edited by
            #23

            Hello @arminunruh , I'm struggling with this also.

            I have uploaded custom "prev / next" buttons for my carousel (via the lay theme options). The SVG code looks like this:

            <?xml version="1.0" encoding="UTF-8"?><svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52"><defs><style>.cls-1{fill:#606060;opacity:.5;}.cls-2{fill:none;stroke:#fff;stroke-miterlimit:10;stroke-width:.67px;}</style></defs><rect class="cls-1" width="52" height="52" rx="4" ry="4"/><polyline class="cls-2" points="22.87 17.06 31.81 26 22.87 34.94"/></svg>

            The width and height (52px) are included in the code (from illustrator) but the buttons don't show up.

            If you can let me know how to fix that would be amazing!

            Thank you,

            1 Reply Last reply
            0
            • D Offline
              D Offline
              dennisbern
              wrote on last edited by
              #24

              @arminunruh I have a completely different problem. I uploaded a svg cursor file. But the cursor does not appear in Firefox and Chrome: www.biografie.art
              Only in Safari.

              Info: I added the code to the file as suggested: <svg height="20" width="20">
              ...
              </svg>

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

                I don't see any custom cursor being used on Safari or any other browser. Where did you set this cursor? There are different places in Laytheme where you can set a custom cursor. @dennisbern

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

                  @rospax
                  Hey, if you look at your code, the width and height attributes are not there; only the viewBox attribute is there, but that's not sufficient.

                  it needs to be like

                  <svg height="20" width="20">
                  ...
                  </svg>

                  1 Reply Last reply
                  0
                  • arminunruhA arminunruh referenced this topic on
                  • R Offline
                    R Offline
                    rospax
                    wrote on last edited by
                    #27

                    @arminunruh thanks, I tried inserting that but it didn't work - whereabouts would you place it in the string of code? Not sure if there's something I'm missing...

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

                      <svg width="52" height="52" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52 52"><defs><style>.cls-1{fill:#606060;opacity:.5;}.cls-2{fill:none;stroke:#fff;stroke-miterlimit:10;stroke-width:.67px;}</style></defs><rect class="cls-1" width="52" height="52" rx="4" ry="4"/><polyline class="cls-2" points="22.87 17.06 31.81 26 22.87 34.94"/></svg>

                      see, i inserted it after <svg

                      i used 52 for width and height, maybe thats the correct value because in viewBox i see those numbers

                      copy this text, create a file cursor.svg, open it with a texteditor and insert this text there, then use this file with lay theme

                      1 Reply Last reply
                      0
                      • R Offline
                        R Offline
                        rospax
                        wrote on last edited by
                        #29

                        Thanks Armin. I already asked ChatGPT and it gave me this code, which works - the attributes are inserted within the <SVG id> section. Changed it using textedit.

                        Hope that helps anyone exporting from Illustrator, as most of us probably are?

                        <?xml version="1.0" encoding="UTF-8"?>
                        <svg id="Layer_1" xmlns="http://www.w3.org/2000/svg" width="52" height="52" viewBox="0 0 52 52">
                        <defs>
                        <style>
                        .cls-1{fill:#606060;opacity:.5;}
                        .cls-2{fill:none;stroke:#fff;stroke-miterlimit:10;stroke-width:.67px;}
                        </style>
                        </defs>
                        <rect class="cls-1" width="52" height="52" rx="4" ry="4"/>
                        <polyline class="cls-2" points="22.87 17.06 31.81 26 22.87 34.94"/>
                        </svg>

                        1 Reply Last reply
                        1
                        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