WWBN / AVideo

Create Your Own Broadcast Network With AVideo Platform Open-Source. OAVP OVP
https://avideo.tube/AVideo_OpenSource
Other
1.91k stars 972 forks source link

How do u turn this off or make it not visible? FHD #7336

Closed JoshWho closed 1 year ago

JoshWho commented 2 years ago

491c88ac-637c-4b39-a993-e6815c57e267

DanielnetoDotCom commented 2 years ago

Try to use CSS to hide it

JoshWho commented 2 years ago

It doesn't have a switch? I thought it did

JoshWho commented 2 years ago

Trying with css doesn't seem to work unless I am doing this wrong maybe.

<style>
.span.label.label-danger.videoLabelPlugin.alreadyTooltip

display: none;
</style>

<style>
  .label-danger {
    display: none;
}
</style>
JoshWho commented 2 years ago

Nevermind it is working now. That is the solution above

JoshWho commented 1 year ago

This still does not hide it on the home page. Just on the video player page. How to make it Hide on the homepage?

DanielnetoDotCom commented 1 year ago

Hi Josh, try this:

.videoLabelPlugin.label-danger{
    display: none;
}

Also if you can please share this on your page https://tutorials.avideo.com/video/126/fraude-na-eleicao-2022-auditoria-privada-brazilwasstolen

BrazilWasStolen

JoshWho commented 1 year ago

Didn't work still shows on the home page

Will Share that.

DanielnetoDotCom commented 1 year ago

I did not see the CSS on your page.

anyway try to add !important to it

.videoLabelPlugin.label-danger{
    display: none !important;
}
JoshWho commented 1 year ago

I did not see the CSS on your page.

anyway try to add !important to it

.videoLabelPlugin.label-danger{
    display: none !important;
}

That did the trick, Thank you @DanielnetoDotCom