Lay Theme Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Popular
    • Users
    • Search
    1. Home
    2. pauljuergens
    P
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 9
    • Best 0
    • Controversial 0
    • Groups 0

    pauljuergens

    @pauljuergens

    0
    Reputation
    7
    Profile views
    9
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    pauljuergens Unfollow Follow

    Latest posts made by pauljuergens

    • RE: style numbers

      @Johan-Saj I just tried and it also didn't worked… but thanks!!

      posted in General Discussion
      P
      pauljuergens
    • style numbers

      Hi There, I am trying to style the numbers of the carousel and instead of 1/4 I wanna have 1 4
      but its not working…

      is there any way?

      <script>
      window.laytheme.on('newpageshown', function(){
      jQuery('span.numbers').html(function() {
            return jQuery(this).text().replace('/', '  ');
          });
      });
      </script>
      
      posted in General Discussion
      P
      pauljuergens
    • RE: Show Thumbnail when hover over text

      ok, i solved the problem !! i added a menu and i don't know why but this fixed everything haha !

      Thanks for your help @mariusjopen !!

      posted in General Discussion
      P
      pauljuergens
    • RE: Show Thumbnail when hover over text

      its really strange. @mariusjopen

      when i open the inspector tools, its directly working without any change of code but only once.. it seems something ins blocking the image..

      or if you go into the inspector and search for the id #img1 and turn display:none; of close the inspector and open it again and turn display:none; on again it is also working.. but only when the inspector is opened

      here is a video:
      https://www.paul-juergens.de/wp-content/uploads/2020/01/Bildschirmvideo-aufnehmen-2020-01-13-um-14.15.58.mov

      posted in General Discussion
      P
      pauljuergens
    • RE: Show Thumbnail when hover over text

      hi @mariusjopen... its not working. i am really stuck.
      i tried another method and it seems like its moving something but the image is still not there..
      the method i used now was like the first one with css.
      https://www.paul-juergens.de
      so when you hover over seltsame tage (.type1) the space for the image is showing, but not the image.

      is this my fault or is something not working.. i don't know

      posted in General Discussion
      P
      pauljuergens
    • RE: Show Thumbnail when hover over text

      @mariusjopen thanks for all your help ! unfortunately it still doesn't work... and i don't know what i am doing wrong ...

      i changed the javascript to:

      <script>
      jQuery(document).on("mouseenter",".type1" function(event) {
      jQuery("this").addClass("active")
      });
      </script>

      and added the !important to the css..

      posted in General Discussion
      P
      pauljuergens
    • RE: Show Thumbnail when hover over text

      Hi @mariusjopen ,

      thank you for your fast respond.

      i added this to my css:

      #hidden-image {
      display:none;
      }

      #hidden-image .active {
      display:block;
      }

      and this to my javascript

      <script>
      jQuery(".arnoschmidttype").on("mouseenter", function () {
      jQuery("this").addClass("active")
      })
      </script>

      but it does not work...

      posted in General Discussion
      P
      pauljuergens
    • Show Thumbnail when hover over text

      Hi Guys,

      i am working on my Portfolio (https://www.paul-juergens.de) and i tried to add the feature, when hovering over the project Titel, the Project Thumbnails shows off. I wrote some custom css and tried out a lot, but i don't get it work.. can somebody help me?

      The Text has a custom class called arnoschmidttype

      0_1578094188264_Bildschirmfoto 2020-01-04 um 00.28.51.png 0_1578094179623_Bildschirmfoto 2020-01-04 um 00.28.41.png

      posted in General Discussion
      P
      pauljuergens