Bug in Wordpress

iporndaily

Newbie
Joined
Jun 8, 2015
Messages
6
Reaction score
0
Alo,

Well too start off I am not sure if I am posting this in the right section althought WP got mentioned in the description.
Anyways back 2 the point, currently I am working on my own Tube website with Adult Content, everything is going pretty well besides that my videos dont scale right in the mobile version and through Wordpress I couldnt change. Does anybody know a other fix? I could go throught style.css but I dont where I should look.

Gio
 
Hey Gio,

Try this:

1. Install Firebug for Firefox or Chrome
2. Select the video element in Firebug and find out the class / id name of the container
3. Add this to the end of your style.css: #video-div-name { width:auto !important;height:auto !important; }
4. You may also have to add: #video-div-name embed { width:auto !important;height:auto !important; }
5. Check in mobile to see if it's fixed

If this doesn't work, you may have to PM me your site so I can take a closer look.

What video player are you using?

Hope this helps.
 
Hey Gio,

Try this:

1. Install Firebug for Firefox or Chrome
2. Select the video element in Firebug and find out the class / id name of the container
3. Add this to the end of your style.css: #video-div-name { width:auto !important;height:auto !important; }
4. You may also have to add: #video-div-name embed { width:auto !important;height:auto !important; }
5. Check in mobile to see if it's fixed

If this doesn't work, you may have to PM me your site so I can take a closer look.

What video player are you using?

Hope this helps.

Thanks for your comment I have worked it out I do a have a few more questions perhaps you could help me out with em.
 
I think the problem you're facing is the Wordpress theme you chose is not responsive. All responsive themes can fit on the mobile devices. If Not, then the CSS will do the job, add this to your CSS code #video-name { width:auto !important;height:auto !important; }
 
Back
Top