How can I add a centralised link to my custom liquid?

Hi there,

On the main page I have a custom liquid with an autoplay video. I want to add a centralised link at the top of it. I was trying to edit the code for custom liquid as well as CSS of the custom liquid, but nothing seems to work. Can anyone advise?

Hello @alant ,

I check your website video autoplay, It’s show on full width then what you want?

I want to add link which will forward to ‘shop’ tab at the top of it.

Hi @alant
Set the below CSS and HTML to show the required output


    
    Your Link Text

CSS for center text


The output will look like this:

That worked perfectly, thank you so much!

Just a follow up question - it’s working great on desktop, however it looks funny on mobile - can you please tell me how to centralised text in this scenario, and maybe make it smaller but for mobile only?

Hi @alant
You can place below CSS for mobile responsive

@media only screen and (max-width: 650px) {
  .video-link {
    padding: 5px !important;
    font-size: 25px !important;
    text-align: center;
  }
}

Amazing! That works, thank you so much!