Jump to content

XHTMLboy

Members
  • Posts

    72
  • Joined

  • Last visited

About XHTMLboy

  • Birthday 04/04/1995

Profile Information

  • Location
    Brighton
  • Interests
    Computers, going out, music, anything.

Contact Methods

  • Yahoo
    kieran_adams124@yahoo.co.uk

XHTMLboy's Achievements

Newbie

Newbie (1/7)

4

Reputation

  1. Hi, I need to know what this tool is called as I cannot remember and I need to do some tutorials due to work experiance. All I know about it is you use a JavaScript framework and you use their IDE which compiles their version of CSS into readable CSS. I cannot remember the name, it was something like "Lite" or someting. Any ideas? Thanks
  2. For some reason when I remove the margin: -1px; it still movies. Any thurther things I could try? Thanks :-)
  3. Hey people, basically I want to add a border when hoverd over. I have done it, it's just that my input boxes move when I have over them and I don't know why, any help will be appreciated. :-) www.brightonvinyl.com/v4/sign_in.php It's basically the sign in form and the Date of birth field. Thanks for looking guys. :-)
  4. Hey, basically I need to make my site look more "clean" but I don't know what to do. I feel the colour scheme or the design doesn't look that good and needs some improvement. So, it would be good if you can tell me what to do to improve it. www.brightonvinyl.com above is the URL to the website, if you can tell me what can be improved and maybe what colour I can do things would be good. Thank you :-)
  5. I'm talking about if I were to style it so it sits above with the rest but more to the right. What would I use to style it and how would I get it to stay at the same place even if I resize the browser?
  6. Thanks, also. On the website I cannot seem to style the sign in button correctly. What's the best way to style it so that it doesn't move when you resize the browser?? Thanks
  7. Hello, I've been trying to get my navigation links to stay fixed into one place when I scroll my website. BUT, they seem to move out of place when I scrol. How can I fix this using CSS??? If you want to take a look at what I mean then here is the website I'm working on as a project. If you scroll the website the links will move and I want to fix this. http://brightonvinyl.com/v3/index.php It looks bad at the moment because I need to fix some things..
  8. Hello thier, I've been trying to get something working and now it does. It's just I cannot style it with CSS. What I want to style is the XML that is being pulled in. Here's my code. <!DOCTYPE html><html lang="en"><head> <title>XML Import</title> <style type="text/css"> } </style> </head><body> <script type="text/javascript"> function xml_get(){ if (window.XMLHttpRequest) { xmlhttp = new XMLHttpRequest();} else { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); } xmlhttp.open("GET", "martyn.xml", false); xmlhttp.send(); xmlDoc = xmlhttp.responseXML; var x = xmlDoc.getElementsByTagName("user"); for (i=0; i<x.length; i++) { document.write(x[i].getElementsByTagName("uID")[0].childNodes[0].nodeValue); document.write("<br />"); document.write(x[i].getElementsByTagName("privilege")[0].childNodes[0].nodeValue); document.write("<br />"); document.write(x[i].getElementsByTagName("last_login")[0].childNodes[0].nodeValue); document.write("<br />"); document.write("<br />");}} </script> <input type="button" onClick="xml_get()" value="XML Import!" /> </body></html> Thanks for taking a look
  9. The file is on computerlabs.co.uk. The link in the code is where the xml data is stored. When I click the button I want it to pull the xml data from that location which is on computerlabs.co.uk
  10. This is what I've mannaged to do but it's not working. :/
  11. Hello, now I am trying to pull XML data from a server using JavaScript. I was wondering if someone can help me built it as I have no idea what to do. Basically I need to click on a button inside a web browser which will get the XML data. If you guys can make one using html and javascript and upload it I'd be very happy. Thanks for looking.
  12. I don't know how to make it, basically all I want is a way to open a .txt file into a textarea and so it's editable and then so I can save it back out.
  13. What I mean is, when you create a directory it then tells you the directory location on my index.php, what I want is for that to be a link so it will open in a new window. When I say a new window I don't mean a new tab inside a browser, I mean a normal window as to where the new folder is created. And thanks
  14. Hey guys, tomorrow I'm handing in my assignment but my tutor didn't teach us much about the languages. SO far I've got most of it working, but where you can create a directory you have to be able to lick on it to open it up in a new window. Seen as I don't know how to use PHP yet, can you guys help me, I would be really gratefull. Their is a link to what I've done so far. I'm also suppose to be able to edit the files inside the directory on the website inside a text area, but I will try my best to do that as I don't want to waste your time. And thanks for taking a look
  15. Hello, I'm creating a website but cannot get the footer to stay at the bottom when I set a height. All I want it to do is to stay at the bottom. Help? Thanks The code is in the attached files.
×
×
  • Create New...