HighDots Forums  

Beginner Question

Macromedia Dreamweaver Macromedia Dreamweaver Discussions (macromedia.dreamweaver)


Discuss Beginner Question in the Macromedia Dreamweaver forum.



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

Default Beginner Question - 11-03-2005 , 11:00 AM






I am working with a CSS template. My spacing is looks good in Firefox but in IE
there are additional spaces. Be easy on me I am new at this.

</div>
<div class="story">
<h3 align="left">&nbsp;</h3>
<h3 align="left"><img src="Customer_Service_Photo.gif" alt="CD customer
rep" width="288" height="180" align=left /></h3>
<h3 align="left">Triple Disc Promises dedicated customer service that
will make your CD or DVD project an on time success!</h3>
<blockquote>
<p align="left">Triple Disc is dedicated to supporting the client
from start to finish. Our knowledge sales staff will walk you through the
entire process from getting you a custom quote or answering your graphic
design questions on the phone or via email.&nbsp; We will help you determine
if you need Replication or Duplication and help you determine the best
packaging option to meet your specific CD or DVD projects needs. Triple Disc
has created a customer service system second to none.</p>
<p align="left" class="story style10">&nbsp;</p>

Thanks in advance

Rick


Reply With Quote
  #2  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: Beginner Question - 11-03-2005 , 11:04 AM






Show the CSS too, please.

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"rellascout" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
I am working with a CSS template. My spacing is looks good in Firefox but
in IE
there are additional spaces. Be easy on me I am new at this.

/div
div class="story"
h3 align="left">&nbsp;</h3
h3 align="left"><img src="Customer_Service_Photo.gif" alt="CD
customer
rep" width="288" height="180" align=left /></h3
h3 align="left">Triple Disc Promises dedicated customer service
that
will make your CD or DVD project an on time success!</h3
blockquote
p align="left">Triple Disc is dedicated to supporting the client
from start to finish. Our knowledge sales staff will walk you through the
entire process from getting you a custom quote or answering your graphic
design questions on the phone or via email.&nbsp; We will help you
determine
if you need Replication or Duplication and help you determine the best
packaging option to meet your specific CD or DVD projects needs. Triple
Disc
has created a customer service system second to none.</p
p align="left" class="story style10">&nbsp;</p

Thanks in advance

Rick




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

Default Re: Beginner Question - 11-03-2005 , 11:28 AM



..oO(rellascout)

Quote:
I am working with a CSS template. My spacing is looks good in Firefox but in IE
there are additional spaces. Be easy on me I am new at this.
What spaces and where? Post a URL, not only a piece of code.

Quote:
div class="story"
h3 align="left">&nbsp;</h3
h3 align="left"><img src="Customer_Service_Photo.gif" alt="CD customer
rep" width="288" height="180" align=left /></h3
h3 align="left">Triple Disc Promises dedicated customer service that
will make your CD or DVD project an on time success!</h3
Why 'h3'? They don't look like headings.

Quote:
blockquote
Why 'blockquote'? The following is no quote.

Micha


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

Default Re: Beginner Question - 11-03-2005 , 11:32 AM



I'm not sure if this is the problem, but is the closing tag appropriate for a <img>?

<img src="Customer_Service_Photo.gif" alt="CD customer rep" width="288" height="180" align=left />

GLH

Reply With Quote
  #5  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: Beginner Question - 11-03-2005 , 11:42 AM



It is in XHTML. If it's used properly. Which this one isn't! Should be -

<img src="Customer_Service_Photo.gif" alt="CD customer rep" width="288"
height="180" align="left" />

which will validate as XHTML 1.0 Transitional, but not XHTML 1.0 Strict
(since the align attribute is not allowed in the strict doctype).


--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"GLH35" <webforumsuser (AT) macromedia (DOT) com> wrote

Quote:
I'm not sure if this is the problem, but is the closing tag appropriate
for a <img>?

img src="Customer_Service_Photo.gif" alt="CD customer rep" width="288"
height="180" align=left /

GLH



Reply With Quote
  #6  
Old   
Glen
 
Posts: n/a

Default Re: Beginner Question - 11-03-2005 , 11:49 AM



Thanks for the info. I'm still learning this stuff - sometimes hesitant to
reply to anyones questions because I'm not always sure if I'm correct!
Glen
"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote

Quote:
It is in XHTML. If it's used properly. Which this one isn't! Should
be -

img src="Customer_Service_Photo.gif" alt="CD customer rep" width="288"
height="180" align="left" /

which will validate as XHTML 1.0 Transitional, but not XHTML 1.0 Strict
(since the align attribute is not allowed in the strict doctype).


--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"GLH35" <webforumsuser (AT) macromedia (DOT) com> wrote in message
news:dkde3a$ko8$1 (AT) forums (DOT) macromedia.com...
I'm not sure if this is the problem, but is the closing tag appropriate
for a <img>?

img src="Customer_Service_Photo.gif" alt="CD customer rep" width="288"
height="180" align=left /

GLH





Reply With Quote
  #7  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: Beginner Question - 11-03-2005 , 11:50 AM



Ahh - but that's how you learn. Make sure you are correct before you reply
by consulting your references, or by building a test page....

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"Glen" <ghornbac (AT) verizon (DOT) net> wrote

Quote:
Thanks for the info. I'm still learning this stuff - sometimes hesitant
to reply to anyones questions because I'm not always sure if I'm correct!
Glen
"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote in message
news:dkdeqn$ls7$1 (AT) forums (DOT) macromedia.com...
It is in XHTML. If it's used properly. Which this one isn't! Should
be -

img src="Customer_Service_Photo.gif" alt="CD customer rep" width="288"
height="180" align="left" /

which will validate as XHTML 1.0 Transitional, but not XHTML 1.0 Strict
(since the align attribute is not allowed in the strict doctype).


--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"GLH35" <webforumsuser (AT) macromedia (DOT) com> wrote in message
news:dkde3a$ko8$1 (AT) forums (DOT) macromedia.com...
I'm not sure if this is the problem, but is the closing tag appropriate
for a <img>?

img src="Customer_Service_Photo.gif" alt="CD customer rep" width="288"
height="180" align=left /

GLH







Reply With Quote
  #8  
Old   
Glen
 
Posts: n/a

Default Re: Beginner Question - 11-03-2005 , 11:58 AM



Before I replied I did take one of my pages and add the /> to an img tag and
didn't see that it caused any real problems - but when I looked up img in
the O'reilly's reference it said that HTML end tag was forbidden. I didn't
know about the XHTML. I guess at least if you're still learning something
it means you're still alive!
Thanks!
Glen
"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote

Quote:
Ahh - but that's how you learn. Make sure you are correct before you
reply by consulting your references, or by building a test page....

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"Glen" <ghornbac (AT) verizon (DOT) net> wrote in message
news:dkdf2r$m7e$1 (AT) forums (DOT) macromedia.com...
Thanks for the info. I'm still learning this stuff - sometimes hesitant
to reply to anyones questions because I'm not always sure if I'm correct!
Glen
"Murray *TMM*" <forums (AT) HAHAgreat-web-sights (DOT) com> wrote in message
news:dkdeqn$ls7$1 (AT) forums (DOT) macromedia.com...
It is in XHTML. If it's used properly. Which this one isn't! Should
be -

img src="Customer_Service_Photo.gif" alt="CD customer rep" width="288"
height="180" align="left" /

which will validate as XHTML 1.0 Transitional, but not XHTML 1.0 Strict
(since the align attribute is not allowed in the strict doctype).


--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"GLH35" <webforumsuser (AT) macromedia (DOT) com> wrote in message
news:dkde3a$ko8$1 (AT) forums (DOT) macromedia.com...
I'm not sure if this is the problem, but is the closing tag appropriate
for a <img>?

img src="Customer_Service_Photo.gif" alt="CD customer rep" width="288"
height="180" align=left /

GLH









Reply With Quote
  #9  
Old   
Murray *TMM*
 
Posts: n/a

Default Re: Beginner Question - 11-03-2005 , 12:01 PM



8)

--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"Glen" <ghornbac (AT) verizon (DOT) net> wrote

Quote:
Before I replied I did take one of my pages and add the /> to an img tag
and didn't see that it caused any real problems - but when I looked up img
in the O'reilly's reference it said that HTML end tag was forbidden. I
didn't know about the XHTML. I guess at least if you're still learning
something it means you're still alive!
Thanks!
Glen



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.