Important:
This support area is for Kalium 3 users only. Support for Kalium 4 has moved to our new platform at support.laborator.co. If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.

Okay
  Public Ticket #4552448
Project Link Location
Closed

Comments

  • wdub35 started the conversation

    Hi there! For each of my project, I am utilizing the 'Project link' module in the theme, that launches websites and other things. They show below the project description. Is there any way to relocate the link to show above the description? Some of my projects have a longer description and I'm afraid the project link may get lost showing under/after the description. 

    Thanks.

    Attached files:  Screenshot 2026-03-19 at 2.24.28 PM.png
      Screenshot 2026-03-19 at 2.28.46 PM.png

  •  1,566
    Laborator replied

    Hi there,

    In Kalium 3, there isn’t a built-in option to change the position of the Project link module. However, you can achieve this by adding a small CSS snippet to reorder the elements.

    You can use the following CSS:

     

    .single-portfolio-holder.portfolio-type-1 .details {
    display: flex;
    flex-direction: column;
    }
    
    .single-portfolio-holder .details .project-description {
    order: 1;
    }
    
    .single-portfolio-holder .social-links-plain {
    order: 2;
    }
    
    .single-portfolio-holder .details .link {
    order: 0;
    }

     

    This will move the project link above the description.

     

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • wdub35 replied

    Perfect, Thanks! Worked great. :)