Jump to content

real_illusions

Members
  • Posts

    1,273
  • Joined

  • Last visited

Everything posted by real_illusions

  1. only if you link back to them or you pay them some money.Thats about it really...and ask nicely :)If there are more tricksfor this then i'd like to know too :)
  2. you will need a server side scripting language such as php or asp to process the forms information and to send the email.http://www.w3schools.com/php/php_mail.aspandhttp://www.w3schools.com/php/php_secure_mail.asp
  3. absolute positioning goes from the top left corner of the window, no matter where it is placed in the code. Relative positioning is from the top left corner of whatever that div is contained in. So, in your case, the inner div is in effect 20x20 away from the top left corner of the page, but using relative positioning in your code, you can use 10x10 away from the top left of the container div.Or something to that effect anyway :)
  4. i think the best way is to show you a simple example: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="en-gb" /><title>This is a title</title><style>a{color:#FF0000;text-decoration:none;}a:hover{color:#00FFFF;text-decoration:underline;}#div a{color:#66FF00;text-decoration:underline;}#div a:hover{color:#666666;text-decoration:none;}</style></head><body><p>Some text..blah blah blah. <a href="">a link with no class or id. It shows up red, with no underline and when hovered over it is blue.</a></p><div id="div"><p>Some more text...blah blah blah.<a href="">This link is inside a div with id div, and has seperate colours.</a> </p></div></body></html> Copy paste that into something, save it as a webpage (with .htm ending), and view on your computer.Hopefully you can work out whats happening. If you use classes, replace the '#' with a '.' in the style. You basically assign styles based on id's and classes's.Hope that helps a bit.
  5. well..we need to see your script to see whats going wrong :)If its online, then give us a link and we'll have a look:)
  6. 1 - several ways. Either via ftp, where you upload the updated file to the server and it overwrites the file with the same name (ftp clients always ask you if you want to overwrite the file in question). Or, via a content managment system where you update pages online by going to an admin control panel of some sort.2 - Again, quite a few ways. Most common is Dreamweaver, its not free but is very handy for learning as its a dedicated website building program. Or notepad, which is free but requires everything to be done by hand and isn't a dedicated website building program.3 - there are loads of free hosts. If you know what sort of things your after from a host will help limit the hosts out there. I believe there is a topic somewhere in this forum. Do a search for "free web hosts" or something and you should find a few kazillion posts, most with links to the hosters and some others with advice and experience about some.4 - phpbb is the most commonly used free forum software. But i find it is very limited compared to something like IPB, which this forum uses. It does costs, but in my view is well worth the money.Hope that helps!
  7. floating divs are used in mainly coloumn layouts, where you have a left and a right coloumn, which are either in a fluid design and stretch the whole page width no matter what size browser. Or, (the way on my site - see siggie), they float to the left and the right inside an outer div, which is auto margined, so it all stays in the centre of the page.The other type of divs are to do with positioning, and you can choose between:absolute, relative, inherit and static. Although the first 2 are the most commonly used (that i'm aware of).Absoulte positioning is positioned from the top left corner of the browser. Relative is relative to whatever the div is inside, again top left corner.Hope that helps!
  8. maybe its just me, but i dont understand what your after.If you want 2 coloumns side by side, that are divs, then your going to have to use floats if you want a fluid design. i.e - it shrinks and grows in accordance of the users browsers dimensions.Your css doesn't make much sense in terms of a design point of view. You have all 3 divs over lapping each other in some way or another..
  9. one extra thing..<img src="rose.gif" width="200" height="500"/>needs to be<img src="rose.gif" width="200" height="500" />There needs to be a space between the slash at the end and any attributes before it in xhtml.
  10. ah...now the post makes more sense
  11. one slight problem...the page doesn't work
  12. you were given the php quiz? which one? theres few kazillion out there :)If you give us some code to look at then we can maybe point you in the right direction. If you have no php knowledge whatsoever, then your probably better off looking for another script with what your after already built in.
  13. is this for yourself locally or to be put on a webpage?If its locally, most modern browsers can do those things for you.You could even build a robot to do all your net surfing for you while your at work if you really wanted to, cos thats the way your going by the looks of it :)
  14. boen robot...seems a strange way (for me at least) on going about moving a list inside a list over to the left. Why not asig a class or id and do it my way instead?although i'm not entirely sure on what the guy is asking in the first place anyway..
  15. Add this into your CSS - ul{padding-left:0px;}It will move your list over to the left.
  16. looks like he wants to have one part of the page keeping at all time, like a menu, that doesn't load each time like it would when you press a link, but another part of the page does.2 options.1 - frames, but discard that immediatly. Frames are ugly and generally completely rubbish. (well..not completely but you get the idea..)2 - Ajax. Not as simple as frames, but more effective, cleaner and more standards compliant (that i'm aware of).
  17. i'm sure the website and server owner will be hugely pleased when they see their bandwidth usage go through the limit with people using robots to download images and such from a site
  18. ie6 doesn't support transparent png's. as you can see, it gives a light grey background instead.
  19. theres no real definitive problems...Problems arise when you code websites, and it does strange things. Although this is linked to the way different browsers read different tags to what the browser spits out back at you.Kinda difficult to describe really. You learn what does what through experience, so, get on with making a site and see what problems you run into
  20. what forum software you got?If you have ipb, then they have their own mods section on their website.
  21. there are ways round it, to make borders out of images. By using divs and current CSS techniques.see my site in my siggie for an example :)
  22. there isn't really a definitive point.Its a general trend where, the more stuff there is to load, the longer the page will take to load. Different internet speeds will also affect load time, but be it on dial up or super duper mega fast it'll set fire to your underwear broadband speeds, the loading times will always increase the more stuff there is to load.
  23. you shouldn't need the text align attribute for the body.As saying text-sling:left; in every other element means extra bytes to d/l from the css, a bit useless in my opinion, And it says on that site that its for ie5 for windows. Who the heck uses ie5 nowadays?
  24. its pretty simplein your css you need#content{margin: 0px auto;width:900px;}the #content been the id of the div that is the main one encasing all your content.
×
×
  • Create New...