Results 1 to 6 of 6

Thread: screen resolution + browser problem !

  1. #1
    Join Date
    Aug 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Talking screen resolution + browser problem !

    1st this is my page :
    http://wwearab.com/site

    with all screen resolution except 1280*768 ( my one ) the page is viewable incorrectly !!

    also I can't view my page correctly with FireFox or Google Chrome .. it appears ok only with Internet Explorer ..

    is there a way to resize my page to be correctly viewable with any s.resolution ?
    and is there another way to fit my page with Chrome and FireFox ?

    ( Note : I'm using Microsoft Front Page 2003 in editing my page )

    thx in advance ..

  2. #2
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default

    Honestly, the problem may be frontpage: it develops for internet explorer, so your situation is not surprising. In general, any html generating application will not be as good as a human writing html code. If you want a perfect site, you will need to make it yourself. With enough time and effort, you may be able to create a good site using frontpage, but personally I don't think it is worth the extra time/effort. Why not just learn html?
    And in order to "fix" this, you will need to edit the html directly. Because of that, it makes sense to just work with the html first, rather than doing two steps.
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  3. #3
    Join Date
    Aug 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    but i think that there is a solution at least for the resolution problem ..
    i wanna a code that make my page in the center of the window ..

  4. #4
    Join Date
    Sep 2007
    Location
    The Netherlands
    Posts
    1,881
    Thanks
    49
    Thanked 266 Times in 258 Posts
    Blog Entries
    56

    Default

    If it's a div that you want to center, there's an easy solution that works in all modern browsers. Example:
    Code:
    <div style="position: absolute; left:50px; right:50px; top: 50px; bottom: 50px; background: yellow">
    Your centered page.
    </div>
    There's a workaround for IE6, but I don't know if this is what you want.
    ===
    Arie Molendijk.

  5. #5
    Join Date
    Aug 2010
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thx alot .. but I have alot of (DIVs) .. What's going on ?
    and what about the Background ? I wanna to resize it to be auto resized with all screen resolutions ..

  6. #6
    Join Date
    Sep 2007
    Location
    The Netherlands
    Posts
    1,881
    Thanks
    49
    Thanked 266 Times in 258 Posts
    Blog Entries
    56

    Default

    You can apply the same technique to all the divs, using the pixel-values you want for each div.
    You can put the background in a div and apply the technique to it.

    The advantage of this method is precisely what you want: being independent of the screen resolution.
    ===
    Arie.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •