How do I make my HTML templates editable?

  • Thread starter Thread starter gfxepic
  • Start date Start date
G

gfxepic

Guest
Ok for some time now I've been creating web designs using Adobe Photoshop, and when I finish, and my design is live on a website, each section pretty much appears as an image. But, what I want is to be able to easily replace each section, and make the text editable (instead of just being a part of an image)
 
Adobe photoshop is a image processing tool, For web pages you should use html editors. there are number of html editors available in the market, free as well as paid. if you are expert in HTML you can use basic code editors. But if not, select WYSIWYG editors. Using WYSIWYG you will work like word or other text editor tools and it will generare html code for you. but for images and animation in the html page you will need adobe photoshop and flash.
 
You need to use the HTML file. Open it in Notepad or another HTML editor. Find the image that contains the text you want to make editable, and replace it with:

<p> Text here. </p>

That's what you want to do, right?
 
Back
Top