[Solved] what code should i use ?? wordpress and css


It’s really not good practice to do this (override inline styles) and would be better that you can remove the inline styling from your html file, BUT you can do this by adding !important to the relevant css classes. So you could add the following to your external stylesheet

#big-video-vid {
  top: new-value-here !important;
  left: new-value-here !important;
}

so the styles would read (adapt the numerical values to what you need)

#big-video-vid {
  top: 150px !important;
  left: 100px !important;
}

But this is definitely somewhat a “hack” and should really only be done as a last resort in a situation where you cannot alter inline styles as I said

5

solved what code should i use ?? wordpress and css