|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| ||||||||||||||||||||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Creating Outlook Stationary with HTML
Hi,
I'm a beginner with HTML and am trying to generate stationary using HTML for Outlook2007. The below is what I have for my code and the look is actually very good. However, when I tab from the subject line to the body, the cursor ends up at the beginning of my centered image. From there, the image moves when I type. What I'm looking to have happen is for the image to be static (un-movable) and the cursor to actually start positioned below the image with a left justification. Does anyone have any ideas? Tiggy <html><head><title id="ridTitle">Citrus Punch</title> <style><!-- body { font-family: Arial, Helvetica; font-size: 12pt; font-style: bold; color: #ff6633; margin-top: 25px; margin-left: 25px; } --></style> </head> <body id="ridBody" background="background2.jpg"><center><img id="ridImg" src=KeaneLogo.jpg align=bottom></center> <p></p> <b><SPAN id="_AthCaret"></SPAN></b> <p></p> </body> </html> |
|
#2
|
|||
|
|||
|
First of all <center><img id="ridImg"
src=KeaneLogo.jpg align=bottom></center> would probably be better off as: Code:
<div id="container" style="width:800px; text-align:center;"> <span style="width:400px; margin:0 auto;"><img id="ridImg" src="KeaneLogo.jpg" align="bottom" /></span> </div> Not sure about your error - I don't think I quite understand it...if it's what I think it's almost definitely an Outlook error. Replace 400px width with the width of your image |
![]() |
| Viewing: Dev Shed Forums > Web Design > HTML Programming > Creating Outlook Stationary with HTML |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|