search

Home  >  Q&A  >  body text

How to add circular border on mp4 video on squarespace

<p>I tried to add border radius in square space video but it doesn't work. Does anyone know how to do this? </p> <p>I was trying to put a circular border on the video and tried the following code: </p> <pre class="brush:php;toolbar:false;">#block-df45bbc957de1bd8c905.video-block .video-player{ padding-bottom:120%; border-radius: 10px; };</pre></p>
P粉781235689P粉781235689461 days ago572

reply all(1)I'll reply

  • P粉254077747

    P粉2540777472023-09-01 14:33:10

    To ensure that the border-radius property takes precedence over any incompatible CSS rules, you can try adding the !important keyword after it, like this: < /p>

    #block-df45bbc957de1bd8c905.video-block .video-player{
      padding-bottom: 120%;
      border-radius: 10px !important;
    }

    reply
    0
  • Cancelreply