Jump to content

Melkor111

Members
  • Posts

    3
  • Joined

  • Last visited

Melkor111's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Melkor111

    ASP email

    Hello guys, I'm just wondering about the Importance parameter in ASP emails...I haven't seen any explanation in the manual on the site concerning this issue, so I tried an obvious: cdoMessage.Importance=importance_variableI get, however, the following error: "Object doesn't support this property or method: 'cdoMessage.Importance' "What do you think might be wrong? Or, perhaps, this param is not supported in CDO?Thanx a lot!Here goes my code:Set cdoMessage = CreateObject("CDO.Message")cdoMessage.From=sendfromcdoMessage.To=sendtocdoMessage.Cc=sendtocccdoMessage.Bcc=sendtobcccdoMessage.Importance=importancecdoMessage.Subject=subjectcdoMessage.HTMLBody=messagebodycdoMessage.SendSet cdoMessage=nothing
  2. I'll try to explain in a different way (sorry, English is not my native language, so...). Imagine that you have two horizontal sections on your page, the first is an image 800px wide, the second is 100% wide, filled with sample images (1px wide) using repeat-x method in CSS. Now if we try to reduce the width of the browser's window, let's say down to 700px, there will be a horizontal scrollbar appearing because the section with image is wider than that. AND NOW we try scrolling: MY GOSH - the 100% wide section is damaged! There is a hole appearing!!Perhaps, some of you have already faced this problem, is there any method?I'll try giving you a link to the page itself soon.
  3. Melkor111

    repeat-x problem

    Hello everyone! Another newbie and a leecher here is trying to disturb you and get your attention!I'm having a headache concerning a repeat-x thing. Suppose I want to make a gradient panel (100% width, a 1px-wide sample grad image is repeated) on top of the page and then add images (buttons) over it. Everything works fine, there's 100% width and it changes perfectly when I'm trying to resize the IE's window, BUT!!! When I diminish the width of the browsers' window so that the buttons area is larger than the total width, there's a horizontal scrollbar appearing (of course) and WHEN I TRY TO SCROLL - there are horrible holes appearing where my gradient should be.The code I use is in external .css file and it looks like this: #infinite1 { position: relative; float: top; width: 100%; height: 26px; background: url(infinite1.jpg) repeat-x; margin: 0; z-index: -1; } I also tried position: absolute; but got the same thing...Please, please, please! Could ye give me a hint how to solve it.Thanx in advance
×
×
  • Create New...