TeamPhotoshop
Reviews, updates and in depth guides to your favourite mobile games - AppGamer.com
Forum Home Latest Posts Search Help Subscribe

new site (portfolio)

Page: 1 Reply
Aug 19th 2003#118292 Report
Member since: Mar 22nd 2003
Posts: 21
www.epyles.com

didnt take me long, wanted something simple that looked good to show off my work, photography, and other things, also some resources..

i cant get the top margin to align.. if anyone can get it to work.. i have topmargin="0" but it wont work :( help!
Reply with Quote Reply
Aug 19th 2003#118294 Report
Member since: Jul 25th 2003
Posts: 489
Hmm..... I dont know what you lookin for but you shouldn't just open up your site like that without an index file, maybe you can post a link to your layout image?

For the margins set
body leftmargin="0" topmargin="0" and you should be fine, If it's the problem with the table try to set border="0" cellspacing="0" cellpadding="0" see if it works
Reply with Quote Reply
Aug 19th 2003#118296 Report
Member since: Apr 20th 2002
Posts: 3000
Use a stylesheet for margins and such.


<style type="text/css">

body {
margin: 0px;
}

</style>
Reply with Quote Reply
Aug 19th 2003#118329 Report
Member since: Mar 22nd 2003
Posts: 21
still not working, tried everything.. www.epyles.com/index2.html if u guys wanna take a look at the HTML for me please.. that would be sweet.

and why not release it? so people cant gget into all my stuff? i just needed help.. thats why i showed it.. thanks if anyone can help!
Reply with Quote Reply
Aug 19th 2003#118334 Report
Member since: Sep 6th 2001
Posts: 3893
alright... try using something like this.

Put this inside the iframe tag...

marginwidth="0" marginheight="0" frameborder="0"


And then put this in the body tag of the site...

body leftmargin="0" topmargin="0" rightmargin="0" marginwidth="0" marginheight="0"


Other then that I think everything looks to be alright. :P
Reply with Quote Reply
Aug 19th 2003#118335 Report
Member since: Aug 15th 2003
Posts: 18
With the css this should work:

body {
margin: 0px;
padding: 0px;
top: 0px;
left: 0px;
}

And you should probably add the same to the iframe.
Reply with Quote Reply
Aug 19th 2003#118385 Report
Member since: Mar 22nd 2003
Posts: 21
NOTHING WILL WORK :( :(
Reply with Quote Reply
Aug 19th 2003#118386 Report
Member since: Mar 22nd 2003
Posts: 21
the right one works, but the top doesnt for any reason :(

helps please!
Reply with Quote Reply
Aug 20th 2003#118467 Report
Member since: Aug 15th 2003
Posts: 18
Oh, you're positionning your elements with tables ?

Then you should add some CSS to that table as well. First you name your table:



(I had to mark the tags as comments, or else they mess up the post...)Then you add this to your css:

#mothertable {
margin: 0px;
padding: 0px;
top: 0px;
left: 0px;
}

(the pound sign makes the css apply the style to the element named, provided the name is unique. if you have another table you must repeat the process with another name)

Maybe also add the top and left properties directly to your table :


Remember to takle out the "!--" and "--"

If all fail I would suggest making you background picture fade to black on its top edge, it would look like you meant the black space :D
Reply with Quote Reply
Page: 1 Back to top
Please login or register above to post in this forum