I have a web design question...

aphex

Moderator<br>All Things Apple
Moderator
Jul 19, 2001
38,572
2
91
So far most of my sites are sliced PSD's. i have been using photoshop for years and its just easier for me to work in there.

How do i go about taking a sliced PSD though, and inserting actual text into the HTML, rather than using text in photoshop and simply exporting it with the slices?
 
Jun 4, 2005
19,723
1
0
Well, if you're hellbent on doing it like that, set the image as a table or div background, then put the text in the div.
 

aphex

Moderator<br>All Things Apple
Moderator
Jul 19, 2001
38,572
2
91
Originally posted by: LoKe
Well, if you're hellbent on doing it like that, set the image as a table or div background, then put the text in the div.

well im not hellbent on it, its just the way i've done it thus far...
 
Jun 4, 2005
19,723
1
0
Originally posted by: aphex
Originally posted by: LoKe
Well, if you're hellbent on doing it like that, set the image as a table or div background, then put the text in the div.

well im not hellbent on it, its just the way i've done it thus far...

Oh, well, in that case you should look into designing websites with a minimal amount of images. I mean, it's really up to you, but full CSS layouts load faster.

But yeah,
#header {
background-image: url(image.png);
}

<div id="header">Some text to go over-top of the header</div>