Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Software > Adobe Software > Dreamweaver

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 03-14-2008, 04:42 AM
Ursad
 
Posts: n/a
Small problem, any help?

Hello i have a problem with DW CS3, this problem came up 3 days ago, i am
new-ish to DW and i can't find out what has happend, so any help would be very
much appreciated.

The problem:
When i press "Enter" instead of going down to the next line it skips it and go
to the next line, so every time i press "Enter" it go's down two line instead
of the line under the text i just worte, even if i start a new "Html" page it
still happens.

Please if any one can help it would be vary apprecitated!

Thank you

Also here is a image of the problem http://www.ursad.com/Images/Help.jpg


Once again thank you!




Reply With Quote
  #2 (permalink)  
Old 03-14-2008, 12:19 PM
Murray *ACE*
 
Posts: n/a
Re: Small problem, any help?

> When i press "Enter" instead of going down to the next line it skips it
> and go
> to the next line, so every time i press "Enter" it go's down two line
> instead
> of the line under the text i just worte, even if i start a new "Html" page
> it
> still happens.


What you are interpreting as two lines is not two lines. It's the margins
between adjacent paragraphs of content, which you have created by clicking
the "Enter" key. You can control this easily with CSS. For example, this
content -

<p>Here is some content. Here is some content. Here is some content. Here is
some content. Here is some content. Here is some content. Here is some
content. Here is some content. Here is some content. Here is some content.
Here is some content. Here is some content. Here is some content.</p>
<p>Here is some content. Here is some content. Here is some content. Here is
some content. Here is some content. Here is some content. Here is some
content. Here is some content. Here is some content. Here is some content.
Here is some content. Here is some content. Here is some content.</p>

will show a margin between these two adjacent paragraphs that is exactly as
large as the largest of the top/bottom margin on the two <p> tags involved
(in other words, the margins don't add together, they COLLAPSE together).

On the other hand, this same content, with some CSS (inline) applied to the
<p> tags, will not show any space between the two paragraphs -

<p style="margin:0;">Here is some content. Here is some content. Here is
some content. Here is some content. Here is some content. Here is some
content. Here is some content. Here is some content. Here is some content.
Here is some content. Here is some content. Here is some content. Here is
some content.</p>
<p style="margin:0;">>Here is some content. Here is some content. Here is
some content. Here is some content. Here is some content. Here is some
content. Here is some content. Here is some content. Here is some content.
Here is some content. Here is some content. Here is some content. Here is
some content.</p>

Inline styling is not optimal, however, and so the correct way to do this
would be to add a stylesheet to the page -

<style type="text/css">
p { margin:0; }
</style>
....
</head>
<body>
<p>Here is some content. Here is some content. Here is some content. Here is
some content. Here is some content. Here is some content. Here is some
content. Here is some content. Here is some content. Here is some content.
Here is some content. Here is some content. Here is some content.</p>
<p>Here is some content. Here is some content. Here is some content. Here is
some content. Here is some content. Here is some content. Here is some
content. Here is some content. Here is some content. Here is some content.
Here is some content. Here is some content. Here is some content.</p>
</body>
</html>

(the code has been truncated at the top for convenience - it should have an
opening <html>, and <head> tag, as well as a doctype.)

In case you are thinking "Ouch - that's code, and I don't want to learn
code", then you have to get over this. If you want to build web pages, you
will have to learn some code.

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"Ursad" <webforumsuser@macromedia.com> wrote in message
news:frcs6k$kb3$1@forums.macromedia.com...
> Hello i have a problem with DW CS3, this problem came up 3 days ago, i am
> new-ish to DW and i can't find out what has happend, so any help would be
> very
> much appreciated.
>
> The problem:
> When i press "Enter" instead of going down to the next line it skips it
> and go
> to the next line, so every time i press "Enter" it go's down two line
> instead
> of the line under the text i just worte, even if i start a new "Html" page
> it
> still happens.
>
> Please if any one can help it would be vary apprecitated!
>
> Thank you
>
> Also here is a image of the problem http://www.ursad.com/Images/Help.jpg
>
>
> Once again thank you!
>
>
>
>


Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Software > Adobe Software > Dreamweaver


Thread Tools Search this Thread
Search this Thread:

Advanced Search
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 Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 04:48 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Credit Card | Credit Card Consolidation | Buy Anything On eBay | Per Insurance | Online Dating



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114