Buying I need somebody to fix CSS issues

Discussion in 'Programming' started by Big0ne, Apr 6, 2013.

  1. #1
    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.
     
    Big0ne, Apr 6, 2013 IP
  2. edduvs

    edduvs Well-Known Member

    Messages:
    394
    Likes Received:
    31
    Best Answers:
    3
    Trophy Points:
    160
    As Seller:
    100% - 2
    As Buyer:
    100% - 0
    #2
    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.
     
    Last edited: Apr 7, 2013
    edduvs, Apr 7, 2013 IP
  3. Big0ne

    Big0ne Well-Known Member

    Messages:
    2,614
    Likes Received:
    81
    Best Answers:
    0
    Trophy Points:
    165
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #3
    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!
     
    Big0ne, Apr 7, 2013 IP
  4. freelanceinphp

    freelanceinphp Member

    Messages:
    134
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    48
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #4
    Adding you on skype :)
     
    freelanceinphp, Apr 8, 2013 IP