|
Author |
Message |
motionman04
Joined: 29 Jun 2007
Posts: 1
|
Posted: Fri Jun 29, 2007 12:46 am Post subject: Photoshop layout question |
|
|
I've never designed a layout in photoshop, so my question is, when you do design a layout, and the main content area is of certain height, is there something specific that you have to do if you want to add more text than the height can handle? |
|
|
|
 |
gonzo13
Joined: 25 Jun 2007
Posts: 40
|
Posted: Tue Jul 10, 2007 8:23 am Post subject: |
|
|
If you do a mockup you don't have to do anything. The web developer can use java script or other method to implement it on the web site. _________________ SQL Training SQL Canada Jobs Canada Banks |
|
|
|
 |
BryanDowning

Joined: 05 Jul 2004
Posts: 1554
Location: California, USA
|
Posted: Fri Aug 17, 2007 2:19 pm Post subject: |
|
|
If you want the content area to remain that height and not stretch to be the length of your text, you should use the following css.
Code: |
<div style="height: 500px; overflow: auto;">
This is all the text. blah blah blah...
</div>
|
_________________ Best Regards,
Bryan Downing
bryandowning.com |
|
|
|
 |
|