Jump to content

jpkuelho

Members
  • Posts

    36
  • Joined

  • Last visited

Posts posted by jpkuelho

  1. this worked for me to, the only problem is it sends the form even if the required fields are blank, and before it gave me a header error so I had to comment out these lines : header ("Location: $redirect"); exit;} else also whats the function of these <input type=hidden name="redirect" value="http://tb31.homeip.net/takk.htm">and how to make the form only send if the fields are filled ?I tought I only had to change these -> <input type=hidden name="required" value="email, nome, address, addressnumber, complemento, CEP, cidade" />thats what i did on mine ;/

  2. thanks for helping I think I'm almost there just have to fix this creepy bug on IE6 I used this conditional CSS :#popup a, #popup a:visited {position: relative;display: block;text-decoration: none;color: #000;border:2px dashed #D8BB5A;padding: 3px;font-size:10px;background-color:#9966cc;margin-left: 2px;}#popup a span {display: none;}#popup a:hover {color: #000;direction: ltr;}#popup a:hover span{display: block;position: relative;}I just declared the DIVs before the images but it renders this creepy border now ._. http://jpkuelho.ifastnet.com/sketch/index.html

  3. Just checked it out, Nothing pops up in Firefox or IE but if you mean the text that apears under the image then its working fine.
    yup that text ;~~what version of IE you used?I have 6.0 and it doesnt work ;~~
  4. Ok this http://jpkuelho.ifastnet.com/sketch/index.html works fine on Firefox but in IE when you rollover the images nothing happens ;~~this is the CSS for the popups.imagethumb { width:50%; height:50%; border: 1px solid #D8BB5A; float:left; margin-left:5px; margin-bottom: 2px; margin-top: 2px;} #thumb { left:5px; margin-bottom:5px;}.thumb span { float:left; display:none; position: relative; text-decoration: none; color:#000000; border:2px dashed #D8BB5A; padding: 3px; font-size:10px; background-color:#9966cc; margin-left: 2px;}.thumb:hover span { display:block;}help me please ;~~

  5. I made this layout on CSS layoutcopysp5.jpgI just want to know the best way of doing this : when someone clicks on the work or contact buttons it loads the content(html or maybe flash) on the black square. I have a hunch it would be better using javascriptI know Actionscript which similar just need some ideas to start onthanks

  6. ok now the problem is that IE expands the height of the document so it creates a white space after the end of the backgroundI know the problem is with the logo image I just don't know what to do to fix it

    img.logo {	position:relative;	left: 88px;	bottom:550px;	width: 99px;}   html>body img.logo {	position:absolute;	left: 88px;	top: 158px;	bottom:auto;	width: 99px;	height:230px;	}

    the white space is the same height as the logo ¬¬'

  7. just started this simple CSS , it just has 3 background images and one logo gif which is not showing on IE6

    body {   margin:auto;   }   a {	border: 0;}   #bg1 {   float:left;   background-image:url("images/bg/bg_01.jpg");   width:1024px;   height:237px;   }   #bg2 {   float:left;   background-image:url("images/bg/bg_02.jpg");   width:1024px;   height:237px;   }   #bg3 {   float:left;   background-image:url("images/bg/bg_03.jpg");   width:1024px;   height:237px;   }   img.logo {	float:left;    z-index:1;	position:absolute;	left: 88px;	top: 158px;	}            

×
×
  • Create New...