Topic: placing images... (Page 1 of 1) |
|
---|---|
Bipolar (III) Inmate From: The Carpenter Arms |
posted 05-31-2005 12:58
HI guys |
Paranoid (IV) Inmate From: London |
posted 05-31-2005 14:05
I'll be honest with you, it's difficult to visualise your problem, if you could post up an example that would help greatly, try using geocities for some free space. |
Bipolar (III) Inmate From: The Carpenter Arms |
posted 05-31-2005 14:31
Thank you very much Blaise. |
Paranoid (IV) Inmate From: Florida |
posted 05-31-2005 18:43
Not really - how 'bout some source code? (A copy of the entire page including images, CSS, etc. would be better) |
Bipolar (III) Inmate From: The Carpenter Arms |
posted 06-01-2005 10:34
That's really annoying, but I can't give you anything, it's not a personal job, it's for my boss and not online yet. And It's got editable content... |
Paranoid (IV) Inmate From: Florida |
posted 06-01-2005 10:45
...can't you even chop out the relevant code and post it here? |
Bipolar (III) Inmate From: The Carpenter Arms |
posted 06-01-2005 11:54
For example then (I've removed al the references and names, you won't mind, will you?) |
Paranoid (IV) Inmate From: London |
posted 06-01-2005 12:26
Right I've thought about this, I think it's quite an unusual thing, not particularly easy but these two border with boxes on, could perhaps be created using to divisions with one background image each, let me write some code... code: <div class="leftBorder"> <div class="bottomBorder"> my stuff lalala </div> </div> Then your style infromation would look like this... code: .leftBorder { background: url(../img/leftBorder.gif) no-repeat center left; } .bottomBorder { background: url(../img/bottomBorder.gif) no-repeat bottom right; } Ok so you could put these two div's around your table or inside your td's, and make your gif's to include the line the boxes sit on and make that line aslong as you think the boredr will posibly go, they should still come out in a web-safe size. |
Bipolar (III) Inmate From: The Carpenter Arms |
posted 06-01-2005 12:34
Thanks a lot Blaise, I'll try and do that! I'll let you know how I got on. |
Paranoid (IV) Inmate From: Florida |
posted 06-01-2005 12:54
Like this?: |
Bipolar (III) Inmate From: The Carpenter Arms |
posted 06-01-2005 13:08
It's more like this: |
Paranoid (IV) Inmate From: Minneapolis |
posted 06-01-2005 16:15
I don't think anyone mentioned this, but if you have to use absolute positioning, there is one fundamental trick you need to be aware of. Absolute positioning is always calculated from the closest 'positioned' ancestor element. So if you haven't specified a position attribute for any elements, absolute positioning will be calculated from the document window. |
Bipolar (III) Inmate From: The Carpenter Arms |
posted 06-01-2005 17:02
Thanks for the tip, jiblet! I'm working on it and see if it works. But what you mentioned is that kind of things I need to know! |
Paranoid (IV) Inmate From: Florida |
posted 06-01-2005 22:19
quote:
|
Paranoid (IV) Inmate From: London |
posted 06-02-2005 11:03
Well said Jiblet, and well corrected reiso! |