I am looking for somebody who can do couple fixes. - related videos when screen resolution is 1024px (1024.css) don't fit the box. -for screens from 1024 to 1365px I would like to be used (1024.css) -for screens from 1366 to 1935px I would like to be used (1366.css) 1024 and 1366.css are files I have made, you can see them on the site. Website url: http://lovehomeporn.com/ (nsfw!) You can change screen resolution with this FF addon: https://addons.mozilla.org/en-us/firefox/addon/firesizer/ Payment of 25USD to PayPal.
I can easily fix that for you in jQuery since I've seen you're already loading it. function cssChange(width) { width = parseInt(width); if ((width >= 1024) && (width < 1366)) { $("#size-stylesheet").attr("href", "css/1024.css"); } else if ((width >= 1366) && (width < 1935)) { $("#size-stylesheet").attr("href", "css/1366.css"); } } $(function() { cssChange($(this).width()); $(window).resize(function() { cssChange($(this).width()); }); }); Code (markup): Regards.
Edduvs, I am hoping to see a non-js solution. If you are still interested, please add me to Skype. My id: prouser29 Thank you!