Jump to content

tarun

Members
  • Posts

    321
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Male

tarun's Achievements

Regular Member

Regular Member (3/5)

0

Reputation

  1. Well Donnne. I Have Almost No Critisisim (<-- Is That How You Spell It :-\) Apartt Fromm. Moree Roundness And Curves.
  2. Ermm... A Bit Boring Maybe =S Try A Web 2.0 Look.
  3. When Hovering Over The Logo A White Background Appears. But I Think It Can Be Fixed Using CSS.
  4. tarun

    sodaDome

    ^ | | It Looks Normal In IE7.
  5. Snazzzzy This Design Is Generally Excellent Butt.. :-\ Apart From The Stuff Mentioned Above The Only Thing I Dont Like Is The Login Form (But That Is Just My PERSONAL Opinion). Maybe Trying Adding Some Style To The Text Fields & Login Button.
  6. Hmmm. The Website Will Not Load Now.. =S Firefox: "The connection has timed out The server at www.nemesiswar.net is taking too long to respond." IE: "Internet Explorer cannot display the webpage" I Also Tried Pinging The Website But It Returned "Request timed out." Every Time.
  7. Hmm. I Dont Like The Main Title; It Looks Tacky. Let Me Guess. It Was Made Using www.CoolText.com The Page Is Also Slow Loading. But That My Be Due To My Internet Connection. However, Well Done For Making The Site The Same In Firefox And IE
  8. Is it possible to jump to a certain line or location in a textarea tag. And if so can you provide an example.. thnx... Tarun
  9. I don't think you understand. But ifugured out the problem. It was the border around the divs.
  10. tarun

    class vs id

    Classes are for when you want to use the styling on 1 or more objects. IDs can only be used on one single object. More details can be found here: http://css-discuss.incutio.com/?page=ClassesVsIds
  11. Right, I have this 100% height layout but it isn't the whole height of the area avaiable its a maybe few pixel over. I have a included a 2 screen shots one is a real screen shot of what it looks like. The other is an edited version, which is what i want it to look like. Both layouts appear the same in IE an Firefox. Screenshots: Real screenshot of what I have now. Edited screenshot of what I aim to have/want. I have also provided the HTML Code <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" > <head> <title>...</title> <style type="text/css" media="screen"> body { margin: 0; padding: 0; height: 100%; } #left { position: absolute; left: 0; top: 0; padding: 0; width: 200px; height: 100%; color: #333; background: #eaeaea; border: 1px solid #333; } #content { position: absolute; left: 200px; top: 0; right: 0; padding: 0; height: 100%; color: #333; background: #ffc; border: 1px solid #333; overflow: scroll; } #left p { padding: 10px; } #content p { padding: 10px; } </style> </head> <body> <div id="left"> <p class="top">aopjfshkmal;hba ha</p> <p>aharijkuyjrawtrwh</p> <p>auetbvdfhiti7okl,hevd</p> </div> <div id="content"> <p>Tsetukuyskpf;ps'ra3w'lmrtefkdylatsururtyryrt.fok./owe sjheak, asiuflajrlk eaiojra.r arsfs eatheakra gaiojtnar atkajehtakn.trna</p> </div> </body> </html>
  12. Well I would like to create a 100% width and 100% height layout but im unsure as to how to do it. any ideas? I have also got a screen shot of the kind of thing im looking for. remember id like to have it Cross Browser compatible if possible Low Quality - 115.29 KB (0.11 MB) Click To Enlarge High Quality - 333.79 KB (0.33 MB) Click To Enlarge Thnx so much ;D
  13. Thanks Alot Guys "Trim" Did The Trick ;D ƬӨPiiC ƧӨLVΣD ;D
  14. Im working on some code which searches a line of a text file to see if it matches a GET variable but only the last line can be searched Filename: test.txt Tarun Patel AnotherEg. Test !! Random Filename: readline.php <?php $path = "test.txt"; $lines = file($path); $test = $_GET["test"]; foreach($lines as $num => $val) { if ($val == $test) { echo ">> "; } echo $lines[$num]; echo "<BR>\n"; } ?> The if statement only works for the last line of "test.txt" this is because it reads the line and the break after it Eg. Line 1 would be: "Tarun " Line 2: "Patel " ETC... But the last line would be: "Random" How do I cut out the break so it only reads: "Tarun" instead of "Tarun "
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.