Click to See Complete Forum and Search --> : What happened to the old layout?
Jrod85
09-08-2005, 11:25 PM
What happened to the old layout? I liked it much better. I guess it's for the best since this site is so big now. Anyways, does anyone know the code to make a link without the underline. I forgot.
Also, how do i import a flash website into my HTML site? I know it has to be in .swf format but how do i insert it into an HTML document. Is that even possible? Please help!
:confused:
Nedals
09-08-2005, 11:47 PM
CSS
a { text-decoration:none: }
tabzter
09-08-2005, 11:51 PM
2 ways to make anchor tags non-underline:
i) for a single tag <a href="blahblah.com" style="text-decoration:none">click here</a>
ii) for all anchor tags on the page
<head>
<style>
a:link{text-decoration:none}
</style>
</head>
Yes it is possible that import flash into a website using the .swf file. Problem is I dont know the code off my head I just use to go on "publish this site" or sommat similar on the macromedia flash (mx) program and it would make a html page with the flash embedded in it for me there.
But I dont think it should be too hard. Find a flash site and take the object code from it and implement it to your own