Hassan,
    The specific portion of the code I'm having a problem with was
inlcuded on my first post. The code that was not included is just
regular table based border wrapping. I bet most if not all the members
here are of the "been there, done that" experience level, which is why
I didn't bother illustrating it.

I'm going to write an example here for your convenience:


<table id="outer_layout" width="100" border="0" cellpadding="0" cellspacing="0">
<!-- 1st row begins here -->
<tr>
<td width="10" height="10">
  <img src="top_left.gif" width="10" height="10">
</td>

<td width="80" height="10">
  <img src="top.gif" width="80" height="10">
</td>

<td width="10" height="10">
  <img src="top_right.gif" width="10" height="10">
</td>
</tr>
<!-- 1st row ends here -->


<!-- 2nd row begins here -->
<td width="10" height="80">
  <img src="left.gif" width="10"  height="80">
</td>

<!-- CONTENT GOES HERE -->

<td width="10" height="80">
  <img src="right.gif" width="10"  height="80">
</td>
<!-- 2nd row ends here -->


<!-- 3rd row begins here -->
<tr>
<td width="10" height="10">
  <img src="bottom_left.gif" width="10" height="10">
</td>

<td width="80" height="10">
  <img src="bottom.gif" width="80" height="10">
</td>

<td width="10" height="10">
  <img src="bottom_right.gif" width="10" height="10">
</td>
</tr>
<!-- 3rd row ends here -->


The portion commented as "CONTENT GOES HERE" is a placeholder for how
an image needs to be displayed. A simple <img> embedded in a <td> will
work. For another notch, a table element that allows it cells to act
as overlays is possible too. This is the approach I've taken. A rough
example was included on my first post. If you follow the responses to
it, there were suggestions to get most of what I intended it for, done
in CSS, as it was considered standard. So the quote below was meant to
be a response to individuals who knew how.

> > I'm still waiting on someone to post a newer standardized approach to
> > acheive the same effect.

Matt


On 8/1/07, Hassan Schroeder <[EMAIL PROTECTED]> wrote:
> Matt 0000 wrote:
>
> > I guess there were a couple of concerns raised. One of them was the
> > justification of the table's use. I chose it only because it
> > is "currently" the only way I know to put pretty borders (outer and
> > inner) around and within an image.
> /
> > I'm still waiting on someone to post a newer standardized approach to
> > acheive the same effect.
>
> I think you'd have a better chance of getting specific help if you
> posted a complete example (or two) of your current approach. :-)
>
> --
> Hassan Schroeder ----------------------------- [EMAIL PROTECTED]
> Webtuitive Design ===  (+1) 408-938-0567   === http://webtuitive.com
>
>                            dream.  code.
>
>
>
> *******************************************************************
> List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
> Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
> Help: [EMAIL PROTECTED]
> *******************************************************************
>
>


*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to