• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

I have a web design question...

aphex

Moderator<br>All Things Apple
Moderator
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?
 
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...
 
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>
 
Back
Top