HighDots Forums  

How the Hell do I indent a paragraph!

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss How the Hell do I indent a paragraph! in the Macromedia Dreamweaver forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
clark_kent
 
Posts: n/a

Default How the Hell do I indent a paragraph! - 07-13-2004 , 04:07 PM






and why isn't this thing more intuitive!
i should be able to hit the space bar or tab inside my table to indent
the first line of my paragraphs ALA word processor but i
can't...STUPID!!
a person shouldn't have to jump through rings of fire to indent
something!!!! JEEEZ!!!

Reply With Quote
  #2  
Old   
darrel
 
Posts: n/a

Default Re: How the Hell do I indent a paragraph! - 07-13-2004 , 04:21 PM






Quote:
and why isn't this thing more intuitive!
i should be able to hit the space bar or tab inside my table to indent
the first line of my paragraphs ALA word processor but i
can't...STUPID!!
Hate to say it, but this *is not* a word processor. It's an HTML editor.
There's a gigantic world of difference.

Quote:
a person shouldn't have to jump through rings of fire to indent
something!!!! JEEEZ!!!
No, a person SHOULD learn how HTML works if they intend to use it.

Indenting and other stylistic formatting is controlled via style sheets. To
indent paragraphs, you need to add a style to your style sheet:

p
{
text-indent: 20px
}

http://www.w3schools.com/css/pr_text_text-indent.asp

That will indent the first line of text.

p
{
margin-left: 20px
}

http://www.w3schools.com/css/css_margin.asp

will indent the entire paragraph.

-Darrel






Reply With Quote
  #3  
Old   
Linda Rathgeber-TMM
 
Posts: n/a

Default Re: How the Hell do I indent a paragraph! - 07-13-2004 , 04:27 PM



clark_kent wrote:

Quote:
and why isn't this thing more intuitive!
i should be able to hit the space bar or tab inside my table to indent
the first line of my paragraphs ALA word processor but i
can't...STUPID!!
a person shouldn't have to jump through rings of fire to indent
something!!!! JEEEZ!!!
Sounds like you are getting frustrated. :-) It might help to remember
that Deamweaver is not a word processor, and that HTML documents are
formatted with style sheets.

If you want to indent all paragraphs, then add this to your style sheet

p { text-indent: 30px }

If you want to indent only some, then create a special class

..txtIndnt { text-indent: 30px; }

--
Cheers,
Linda Rathgeber
----------------------------------------------------------------------
Learn Fireworks Visual Effects with "RAZZLE DAZZLE"
http://www.webdevbiz.com/pwf/
Victoriana | http://www.projectseven.com
Playing with Fire | http://www.playingwithfire.com
Team MM Fireworks Volunteer | www.macromedia.com/go/team
----------------------------------------------------------------------



Reply With Quote
  #4  
Old   
Alan
 
Posts: n/a

Default Re: How the Hell do I indent a paragraph! - 07-13-2004 , 04:54 PM



most paragraphs aren't indented in html.

if you do want to insert multiple blank spaces- either insert the
non-breaking space (under insert-->special characters)

or change the general preferences to allow multiple spaces (which will
insert   ) Note- it's not great to use blank spaces as an alignment
tool. They add a lot of code clutter, and a blank space varies in size
depending on font specs.

Quote:
and why isn't this thing more intuitive!
i should be able to hit the space bar or tab inside my table to indent
the first line of my paragraphs ALA word processor but i
can't...STUPID!!
a person shouldn't have to jump through rings of fire to indent
something!!!! JEEEZ!!!


Reply With Quote
  #5  
Old   
Michael Fesser
 
Posts: n/a

Default Re: How the Hell do I indent a paragraph! - 07-13-2004 , 05:08 PM



.oO(clark_kent)

Quote:
and why isn't this thing more intuitive!
i should be able to hit the space bar or tab inside my table to indent
the first line of my paragraphs ALA word processor but i
can't...STUPID!!
Learn HTML and you'll see that it has _nothing_ to do with a word
processor, they are completely different worlds. In fact HTML/CSS/etc.
is much more flexible (and of course has another intention than a word
processor).

Quote:
a person shouldn't have to jump through rings of fire to indent
something!!!! JEEEZ!!!
You have to learn how to walk before you can make jumps. Why should it
be different with HTML? If you don't know the basics you'll always
fa(i/l)l.

Micha


Reply With Quote
  #6  
Old   
Al Sparber- PVII
 
Posts: n/a

Default Re: How the Hell do I indent a paragraph! - 07-13-2004 , 05:20 PM



Michael Fesser wrote:

Quote:
Learn HTML and you'll see that it has _nothing_ to do with a word
processor, they are completely different worlds. In fact HTML/CSS/etc.
is much more flexible (and of course has another intention than a word
processor).

In my opinion, CSS has a lot in common with the efficient use of a word
processor. In a word processor, one can indent the first line of a
paragraph by pressing the tab key or he can redefine the style for
normal paragraphs. It's a much more private matter, however, as readers
of a document cannot see its underlying code.

--
Al Sparber - PVII
http://www.projectseven.com
DW Extensions - Menu Systems - Tutorials - CSS FastPacks
---------------------------------------------------------
Webdev Newsgroup: news://forums.projectseven.com/pviiwebdev/
CSS Newsgroup: news://forums.projectseven.com/css/
RSS/XML Feeds: http://www.projectseven.com/xml/






Reply With Quote
  #7  
Old   
darrel
 
Posts: n/a

Default Re: How the Hell do I indent a paragraph! - 07-13-2004 , 05:43 PM



Quote:
In my opinion, CSS has a lot in common with the efficient use of a word
processor. In a word processor, one can indent the first line of a
paragraph by pressing the tab key or he can redefine the style for
normal paragraphs. It's a much more private matter, however, as readers
of a document cannot see its underlying code.
Excellent point.

The reality is that while everyone *thinks* they know how to use a word
processor, they really only know how to use a typewriter.

One of the biggest headaches I've had here at my work place is migrating
content from word documents into our CMS. *NO ONE* has EVER learned how to
format a well structured document in Word using the proper tools and style
features.

VERY frustrating to say the least ;o)

-Darrel




Reply With Quote
  #8  
Old   
Al Sparber- PVII
 
Posts: n/a

Default Re: How the Hell do I indent a paragraph! - 07-13-2004 , 05:46 PM



darrel wrote:
Quote:
In my opinion, CSS has a lot in common with the efficient use of a
word processor. In a word processor, one can indent the first line
of a paragraph by pressing the tab key or he can redefine the style
for normal paragraphs. It's a much more private matter, however, as
readers of a document cannot see its underlying code.

Excellent point.

The reality is that while everyone *thinks* they know how to use a
word processor, they really only know how to use a typewriter.

One of the biggest headaches I've had here at my work place is
migrating content from word documents into our CMS. *NO ONE* has EVER
learned how to format a well structured document in Word using the
proper tools and style features.

VERY frustrating to say the least ;o)
And it actually works both ways. We include PDF user guides with our
products and we generate them by first making an HTML user guide with
logical styles. We load the finished UG in a browser, choose Edit -
Select All, then paste into a blank Word document. So long as the HTML
was well-structured and styled with CSS, Word will perfectly convert the
document and create styles that mirror the CSS. From that point you
simply fix page breaks and generate a TOC and run the PDF conversion.
The result is a perfect document. If the HTML was typical of what the
average DW user creates and if the page used attributes and font tags,
then guess what? The generated Word doc would be a mess.

--
Al Sparber - PVII
http://www.projectseven.com
DW Extensions - Menu Systems - Tutorials - CSS FastPacks
---------------------------------------------------------
Webdev Newsgroup: news://forums.projectseven.com/pviiwebdev/
CSS Newsgroup: news://forums.projectseven.com/css/
RSS/XML Feeds: http://www.projectseven.com/xml/






Reply With Quote
  #9  
Old   
clark_kent
 
Posts: n/a

Default Re: How the Hell do I indent a paragraph! - 07-17-2004 , 12:58 AM



"darrel" <notreal (AT) hotmail (DOT) com> wrote


Quote:
No, a person SHOULD learn how HTML works if they intend to use it.
bullshit....a person shouldn't have learn anything...that's why a
person buys something like DreamWeaver


Reply With Quote
  #10  
Old   
clark_kent
 
Posts: n/a

Default Re: How the Hell do I indent a paragraph! - 07-17-2004 , 01:00 AM



Quote:
Micha
it's not like a word processor?

funny these keys i'm hitting seem to do the same thing in HTML....
type these symbols (known as letters) on the screen.....
sort of like a.......WORD PROCESSOR!


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.