1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

Web Design

Discussion in 'HTML & Website Design' started by john0777, Oct 9, 2012.

  1. #1
    Hi i create html page in full screen mode but design will be breaking in multiple resolution screens

    that is not fit in all screens how can i fit
     
    john0777, Oct 9, 2012 IP
  2. scottlpool2003

    scottlpool2003 Well-Known Member

    Messages:
    1,708
    Likes Received:
    49
    Best Answers:
    9
    Trophy Points:
    150
    #2
    I'd advise you to do some research on coding in compatibility. There are many different things people could tell you, one of which is to code in wrappers or setting the page width to 100% which would be 100% of the device. You're probably going to have to re-code a majority of your website though.

    Or use a CSS framework such as the 960 grid system. It works fantastically well across multiple platforms such as iPhone, Galaxy, tablets, PCs and most screen resolutions.

    The only issue I had with it was that it only squeezes the images down when the screen gets smaller. Obviously with devices such as phones, the images need to be cropped rather than squeezed as it eats the bandwidth.
     
    scottlpool2003, Oct 9, 2012 IP
    dexmedia likes this.
  3. dexmedia

    dexmedia Member

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #3
    just use % on the place of px , make width and height 100%
     
    dexmedia, Oct 11, 2012 IP
  4. marciello duncan

    marciello duncan Member

    Messages:
    33
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #4
    I agree with Scott. I think 900px to 950px width would do for all the resolution. You just need to manipulate the design to make it seamlessly.
     
    marciello duncan, Oct 24, 2012 IP
  5. MarkTheUser

    MarkTheUser Member

    Messages:
    206
    Likes Received:
    0
    Best Answers:
    4
    Trophy Points:
    26
    #5
    I would say use % instead of pixels. This is the easiest way to do it. No matter how big the screen it will always be the % you set of any screen.
     
    MarkTheUser, Oct 24, 2012 IP
  6. newyorkitservice

    newyorkitservice Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    While design is the art and process of combining individual elements of design (lines, shape, texture, color) into a pleasing arrangment,
     
    newyorkitservice, Oct 26, 2012 IP
  7. Autotool

    Autotool Member

    Messages:
    8
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    36
    #7
    I think, Use a CSS like: margin:0px;padding:0px;
     
    Autotool, Oct 26, 2012 IP
  8. alishapinto

    alishapinto Peon

    Messages:
    15
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    I have used % instead of pixels. But yet, it does not fit on many screen resolutions. I mean it gets self- altered sometimes. How does this happen?
     
    alishapinto, Oct 27, 2012 IP
  9. g r hasib

    g r hasib Peon

    Messages:
    93
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    You can use all browser supported css file.
    and also used to % instead of px;
     
    g r hasib, Nov 3, 2012 IP
  10. matt_62

    matt_62 Prominent Member

    Messages:
    1,827
    Likes Received:
    515
    Best Answers:
    14
    Trophy Points:
    350
    #10
    Yes, using % is the problem and the reason for your issues. if you are using % then its a dynamic website, and it will change based on the resolution and will break. If you use px for everything, then everything is fixed in place. it will then look identical on different sized screens,( though you still need to make sure it appears the same in different browsers.)
     
    matt_62, Nov 3, 2012 IP
  11. lolpasslol

    lolpasslol Peon

    Messages:
    860
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Did you use java-script ?
    I think there is any problem here ,
    try to solve it.
     
    lolpasslol, Nov 5, 2012 IP
  12. henrycarpenter03

    henrycarpenter03 Peon

    Messages:
    24
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    [FONT=Arial, Helvetica, sans-serif]Make sure to set the margin top and bottom wrapper to 0 and left and right margin to auto, which centers it on the page. Then, you can set the width to 750 pixels or you can probably go up to 950 or 1000. Lastly. maker sure your CSS properly link to other pages of your site.[/FONT]
     
    henrycarpenter03, Nov 5, 2012 IP
  13. cpaclick

    cpaclick Greenhorn

    Messages:
    90
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    18
    #13
    First, check this to know what are problems of your site when being view by mobile devices http://leebros.us/blog/item/134-how-to-test-your-website-layout-on-iphone-ipad

    Then, use CSS to fix the problems you find by define specific css code for specific screen like:
     
    cpaclick, Nov 7, 2012 IP
    Anton @ Multi-Browser likes this.
  14. Anton @ Multi-Browser

    Anton @ Multi-Browser Guest

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #14
    I agree with cpaclick - you can check your design with third party tools and emulators - iphone/ipad emulators for apple or multi-browser viewer for windows allows you to test the design. You can also just use browsershots and specify the dimentions when requesting the URL. % are good in some instances, but can add to complexity when wanting to maintain.
     
    Anton @ Multi-Browser, Nov 8, 2012 IP