Log in

View Full Version : A few problems



yannickjeh
09-23-2010, 11:12 AM
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

riptide
09-23-2010, 02:45 PM
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; }

yannickjeh
09-23-2010, 03:33 PM
I actually have no experience in css so I don't know exactly what to do. =\

riptide
09-23-2010, 05:00 PM
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.

molendijk
09-24-2010, 02:05 PM
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.

yannickjeh
09-24-2010, 05:13 PM
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! :D