View Single Post
Old 11-27-2021, 04:23 PM  
Nubianprince
Confirmed User
 
Industry Role:
Join Date: Nov 2002
Location: Canada
Posts: 677
Quote:
Originally Posted by marxxman View Post
I am not a programmer and find it difficult to try to learn api's. I am trying to replace generic ads with live CB cams like this and finding this was a Godsend. I'm trying to figure out how to adjust the css for the performer names, when I look at it on mobile they all run together. I would be very grateful if anybody could steer me in the right direction on how to adjust this script so it's readable on any screen size, and where to add other fields like user age and number of users in the room. Anybody have any advice for a slow learner? I spend hours just spinning in circles.
Try this for mobile
Code:
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

 CSS HERE
 
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

 CSS HERE
 
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

 CSS HERE
 
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

 CSS HERE
 
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

 CSS HERE
 
}
__________________
XVIDEOS WEBCAMS -/- MADE WITH A CUSTOM WP PLUGIN
Nubianprince is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote