Link to home
Start Free TrialLog in
Avatar of rockas1982
rockas1982Flag for United States of America

asked on

html css layout fix

First problem

http://www.photo-calliope.com/contact.php

I want the buttons under the text box (i have fixed this left padding 165) but now it's not working and i want to print the email address on the right empty space somewhere in the middle of it

Second problem
http://www.photo-calliope.com/portfolio.php
i want the iframe to work inline and when i click in an image to be open fullscreen not only in iframe


thnx and sorry for my english
the hole script www.photo-calliope.com/31-10.zip
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

The button position is often done with tables.  You can add a "margin-left: 110px;" to that div.
Avatar of rockas1982

ASKER

on contact page there is a white column on the right what the hell is that ?
ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
nice booth of what u say worked fine

how about the other things

print the email address on the right empty space somewhere in the middle of it
and

http://www.photo-calliope.com/portfolio.php
i want the iframe to work inline and when i click in an image to be open fullscreen not only in iframe

any idea ?
To open the image full screen, you have to open a new window.  Note that you do not have a closing iframe tag </iframe>.  An iframe is pretty much by definition a 'block' that contains another page.

To add the email address, you have to either put a table around the form elements and put the address in the right side... or... enclose the form elements in a floated div and put another floated div beside it with the email address.
can you translate what you saying in code ?