cute_angel10490
07-23-2003, 07:18 AM
hello, is there a way to take off the margin on the right site and the bottom one? if there is, what is the code?
Thanks =)
Thanks =)
|
View Full Version : margin help cute_angel10490 07-23-2003, 07:18 AM hello, is there a way to take off the margin on the right site and the bottom one? if there is, what is the code? Thanks =) Kaliyoda 07-23-2003, 09:05 AM Some smartypants will probably say "search the forum" But anyway :D The only margins you get to define are top and left - right & bottom are dependant largely on the screen resolution of the viewer's PC and the content of your page. Careful control of your content using a fluid design based on 100% table widths is a good place to start. cute_angel10490 07-23-2003, 09:54 AM oh ok, I've searched the forum and they say to put <body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0">, but it doesn't work :( Kaliyoda 07-23-2003, 11:02 AM As far as I know there are no such attributes as rightmargin and bottom margin. That would explain why it doesn't work :D pb&j 07-23-2003, 04:12 PM depending on what tag you want to apply this margin off, try using css... <style type="text/css"> tag_name_here {margin-bottom:0px;margin-right:0px;} </style> |