Results 1 to 6 of 6

Thread: A few problems

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

    Default A few problems

    Dear DD users,

    I'm currently working on the website http://www.papegaaiengedrag.nl

    I do have a few problems tho, can't manage to fix it and I tried almost everything.

    Here's a list of problems:
    - The image slideshow is working as it should, but when opened in interet explorer it does't align with the website, and when i click the contact button a black stripe appears at the bottom of the image viewer, but it does work on firefox.

    - Whatever I do, I can't center the website in firefox.

    - I want to make the website "stretch" so I don't have to use iFrames anymore. Is there a tutorial somewhere on how to do this?

    Hope some of you can tell me to fix my problems.

    Thanks in advance,
    Yannick

  2. #2
    Join Date
    Nov 2006
    Posts
    236
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default

    you should try styling table_01 or Div style3 with some CSS

    this looks off table.center {margin-left:auto; margin-right:auto;} because I don't know what table that is.

    try

    .style3{ position: absolute; top:20px; left: 200px;text-align: center; }

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

    Default

    I actually have no experience in css so I don't know exactly what to do. =\

  4. #4
    Join Date
    Nov 2006
    Posts
    236
    Thanks
    4
    Thanked 1 Time in 1 Post

    Default

    just replace the other .style3 {text-align: center; } with

    .style3{ position: absolute; top:20px; left: 200px;text-align: center; }
    and see if it works.

    You really need to learn CSS if you want to build web pages. because all those tables aren't good you should be using Divs.

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

    Default

    Yannick, you're asking for trouble because your page doesnt validate. It doesn't even have a doctype. Try to correct that.
    The centering problem can be fixed by replacing
    <table id="Table_01" width="901" height="1001" border="0" cellpadding="0" cellspacing="0" > with
    <table id="Table_01" width="901" height="1001" border="0" cellpadding="0" cellspacing="0" class="center">,
    since you have table.center {margin-left:auto; margin-right:auto;} in the styles.
    ===
    Arie Molendijk.

  6. The Following 2 Users Say Thank You to molendijk For This Useful Post:

    yannickjeh (09-24-2010),[Nicolas] (09-24-2010)

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

    Default

    Ah so thats why my page didn't center.. thanks in advance!

    Edit: Yeaaah!! It worked, thanks a bunch!! Will remember this for sure, thanks so much!!!!

    Anyone familliar with one of the other problems I posted at the top?
    I'm still learning HTML and CSS so I try my best. I'd like to thank you all for helping me out tho!

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
  •