text/jpg problem in dreamweaver

chriss

New Member
Hi!

I made a design (including text) in photoshop, sliced it up, saved it for web as jpg. Opened the html page in dreamweaver but know all the text is in a jpg. It is one big table with a lot of jpg's. Maybe I have to add the text not in photoshop but in dreamweaver...
How can I make my text in dreamwaever and use the image from photoshop as background?

Thanks

Christine
 

AusQB

New Member
Just create your background images (without text) and then apply them as the backgrounds for the respective table cells or divisions. Then simply put your markup (<p>, <span>, <div>, etc.) in those elements.
 

LouTheDesigner

New Member
The guy above me has it right. Pictures aren't really worth anything for search engines anyway. "A picture is worth a thousand words" -- Try telling that to a search engine.
 

chriss

New Member
Hi AusQB,

Thanks for your reply. I am a beginner and you write:"Just create a background img" and "Simply put..." How do I create a img as a background img and where do I put the text?

Thanks

Christine
 

DimitriDV

New Member
<div class="test">Here's your text</div>


.test{
background-image: url(image.jpg);
}



or, because you're a nOOb, use: <td class="test">your text in here</td>
 
Top