anyone good at css ?

manoogim

New Member
Messages
11
Reaction score
0
Points
0
please take a look at my site http://mtmphp.x10hosting.com/auth/signup
if you use firefox, now please scroll down.
you will get both google adds and my div 'how you can support this site' at the bottom of the page...
while there is a lot of white space on the right

now take a look using IE 7. you will see that the white space on the right was filled with the google ads and my 'how can support ...soapbox' this is how i would like it to be.

i hope there is some standard css layout that will allow me to force both adds columns to the right, while the content populates the space t the left. i see them on the web all the time so there must be a way
 

Danielx386

Member
Messages
712
Reaction score
9
Points
18
Yeah, When I get time, I will take a look at it for you. Can you PM me with a copy of the files so that I can work on it offline?
 

peterac

New Member
Messages
24
Reaction score
0
Points
1
Manoogin, Try #container position: relative; #content float: left; #right float: right; of course you will have to adjust width, margins and padding.
Hope this helps
Peter
 

manoogim

New Member
Messages
11
Reaction score
0
Points
0
my css is pretty much a copy of the site.css file i got from the book 'zend in action', then i made a few small changes. the file has 200 lines - are you saying to paste the css file here in the forum ?
 

Danielx386

Member
Messages
712
Reaction score
9
Points
18
no. What i'm saying is to pm me a copy of the html file and css file. Better yet, Attach the files (CSS and HTML) to this thread. Then everyone can look at it. Also what peterac said may help, but I havn't looked at the code yet, so I can't say.
 

manoogim

New Member
Messages
11
Reaction score
0
Points
0
thanks daniel, sorry if i am being thick but i do not know what it means when you say to 'pm the files' :nuts:
anyways i tried what peterac suggested and it worked. thanks for help guys

no. What i'm saying is to pm me a copy of the html file and css file. Better yet, Attach the files (CSS and HTML) to this thread. Then everyone can look at it. Also what peterac said may help, but I havn't looked at the code yet, so I can't say.
 

diabolo

Community Advocate
Community Support
Messages
1,682
Reaction score
32
Points
48
try:

Code:
* { margin: 0 auto; }
 
Top