Im using Adobe Image ready Im trying to create a sliced image for surrounding my web pages or content. My question is;
Is there anyway to have image ready export the html so that the slices are backgrounds within the table???
Help!!!!!!
Homebuilt Cockpit Resources
http://Masternerd.com
Comparison Shopping Website
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2793
I've been thanked 77 times.
Offline
Not that I know of, but I can't imagine it being a big problem to solve yourself
have the table cells already got fixed width and size attributes in the HTML that image ready has given you?
If so,
take
Code: html
<td width="x" height="y"><img src="...."></td>
and turn it into
Code: html
<td style='width:xpx; height:ypx; background-image:url(......)'></td>
A clever find and replace do it all for you in one (or two) goes
find <td width=" replace with <td style='width:
find " height=" replace with px; height:
find "><img src=" replace with px; background-image:url(
find "></td> replace with );'></td>
ok, 4 steps. should work
Thanks I did figure it out I still need to hand code but thats ok. Check out the example Im putting together:
http://masternerd.com/card.html
Designed the logo too !!
Homebuilt Cockpit Resources
http://Masternerd.com
Comparison Shopping Website
Moderator
From: Yorkshire, UK
Registered: 2006-08-19
Posts: 2793
I've been thanked 77 times.
Offline
Jspahn wrote:
Thanks I did figure it out I still need to hand code but thats ok.
Have you heard of faux borders?
You take a 1px high slice of your background image and tile it vertically down the page,
eg www.jvmembers.com
or horizontally in the header as in
http://www.communicationsarticlesweb.com/
Jspahn wrote:
Designed the logo too !!
cool!
| Never |


