Jump to content

oknoorap

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by oknoorap

  1. Totally agreed.. or show their website so we can help OP or use www.jsfiddle.net
  2. That is advertisement spam, try :- Use chrome incognito window, or firefox private browsing to see your website- Don't use free hosting- If you're CMS user, don't use free template/free themes.
  3. anchor tag (<a>) can submit a form only if you're using javascript, I suggest you're using jQuery. CSS is only give you a display, not a function
  4. Okay try this HTML: <html><head> <Title>I love you the most.</title> <link rel="stylesheet" type="text/css" href="lovestyle.css" /> <link href='http://fonts.googleapis.com/css?family=Griffy' rel='stylesheet' type='text/css' /></head> <body> <div class="main"> <h1 class="title">I love you the most.</h1> <h2 class="subtitle">A website for Mara & Jensen</h2> <ul class="navigation"> <li><a href="mfm.html">Music for Mara</a></li> <li><a href="score.html">Score Board</a></li> </ul> <div class="content"> <p>this is a test blah blah blah</p> </div> <div class="clear"></div> </div></html> CSS: body { background-color:#ffffff;} div.main { width: 1024px; border: none; margin: 0 auto; padding: 0; background-color:#ffffff; white-space:nowrap; outline-color:#000000; outline-style:dotted;} h1.title { font-family: 'Griffy', cursive; color:#00000; text-align:right; font-size:50px; position:relative; right:10px; white-space:nowrap; margin:0px;} h2.subtitle { color:#000000; font-size:14px; text-align:right; position:relative; right:15px; top:0px; white-space:nowrap; margin:0px;} ul.navigation { list-style-type:none; margin:5px; padding:0; text-align:left; float: left; width: 200px;} ul.navigation a { display: block;} div.content { width:550px; border:0; padding:0; margin:5px; float: left} .clear { clear: both;}
  5. Only CSS3 and chrome can do it..
  6. Yes its very possible... usebackground-image, background-position, background-repeatin every pseudo properties, instead of background:
  7. I suggest : <div id="container"> <div id="item1" class="container-item"></div> <div id="item2" class="container-item"></div></div> and your css is : #container .container-item { display: block; margin: 5px 0;}
  8. oknoorap

    mail()

    The idea of using mail() function is bad, you must using library like phpmailer, or you can using paid SMTP Server relay.. There is reason that mail service such as gmail, your mail will shown at spam folder. But if you're using smtp, google will marked your email as important email.mail() is basic php function that using port 25, so gmail or other mail service will be carefully marked email that sent by port 25.
  9. You can't apply css to select option, but thanks to jQuery, try to search "jquery selectbox", you'll found what you need.
×
×
  • Create New...