prevent page wrapping

D

drewcifer

after publishing the page, the text in the pages wrap when you make the
window smaller. how do i set it so that the page is "fixed" or the text does
not move when adjusting the page size? Thanks!
 
S

Steve Easton

Place the text in tables and cells or divs set at a fixed width instead of a percentage width.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer
 
C

Chris Leeds, MVP-FrontPage

you can set your table or cell to a fixed width, or you can right click
within the offending cell, choose cell properties, and set it as "nowrap".

HTH

--
Chris Leeds,
Microsoft MVP-FrontPage

ContentSeed: great tool for web masters,
a fantastic convenience for site owners.
http://contentseed.com/
 
C

clintonG

<style type='text/css'>
body
{
width: 375px;
}
html>body
{
width: auto;
min-width: 375px;
}
</style>

For cross-browser support put the above CSS into the <head> element of the
HTML sourceof each page or into the .csss file you <link> to. Modify the
numerical values as wanted to control the width of the page.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top