GameAmp Fansite Network Gamer Shirts, GameAmp T-Shirts
Change Game Sites   
About GameAmp, Inc GameAmp Staff Register for a free account
GameAmp Login GameAmp Password
GameAmp Homepage
GameAmp Game MapsGameAmp Game ListLatest Video Game NewsVisit the Video Game ForumsGame Item AuctionsFind Gamer FriendsGame Screenshots
Video Games Subnav
GameAmp Information

GameAmp: HTML??!!??

clear gif
Forum >> Miscellaneous >> Off-Topic >> HTML??!!??

 
User Message
CED 14 Profile
CED 14
View Profile of CED 14
Posts: 6
Joined: 01/17/2006
Credibility: 0 pts
HTML??!!?? 

Well like the title sugests i am LF help with HTML well i created this website in Dreamweaver

My Webpage

and the problem is that i dont know how i can make the background so that it streches acording to the BG, does anyone know how, i forgot how to do it,leart it once and now :S

anyways thanks for your help already

CED 14
01/28/08 15:31 Login to rate this user's post!
mginn82 Profile
mginn82
View Profile of mginn82
Posts: 0
Joined: 11/21/2005
Credibility: 0 pts
RE: HTML??!!?? 

QUOTE
Well like the title sugests i am LF help with HTML well i created this  website in Dreamweaver

My Webpage

and the problem is that i dont know how i can make the background so that it streches acording to the BG, does anyone know how, i forgot how to do it,leart it once and now :S

anyways thanks for your help already 

CED 14


As far as I know, this isn't possible with plain HTML. It may be possible with CSS, but I'd have to look/play around to tell you for sure.

EDIT: This will pretty much do what you're wanting.. Just replace the [ and ] with the less-than and greater-than signs...

CODE








[!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\"]

[html]

[head]

[title]Background to fit screen[/title]

[meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"]

[meta http-equiv=\"Imagetoolbar\" content=\"no\"]

[style type=\"text/css\"]

/* pushes the page to the full capacity of the viewing area */

html {height:100%;}

body {height:100%; margin:0; padding:0;}

/* prepares the background image to full capacity of the viewing area */

#bg {position:fixed; top:0; left:0; width:100%; height:100%;}

/* places the content ontop of the background image */

#content {position:relative; z-index:1;}

[/style]

[!--[if IE 6]]

[style type=\"text/css\"]

/* some css fixes for IE browsers */

html {overflow-y:hidden;}

body {overflow-y:auto;}

#bg {position:absolute; z-index:-1;}

#content {position:static;}

[/style]

[![endif]--]

[/head]

[body]

[div id=\"bg\"][img src=\"yourimage.jpg\" width=\"100%\" height=\"100%\" alt=\"\"][/div]

[div id=\"content\"][p]Enter a ton of text or whatever here.[/p][/div]

[/body]

[/html]





***THIS POST HAS BEEN EDITED***



01/28/08 15:36 Login to rate this user's post!
furball Profile
furball
View Profile of furball
Posts: 2
Joined: 05/18/2006
Credibility: 0 pts
RE: HTML??!!?? 

Ok first of all..

Putting images in the background aint really the best option..
The image is a fixed size youl have trouble when you get with Big pages with lots of text.

My advice -

1.Set a colour for a background, then a image (your guild name w.e with the same background as your form background.) at the top. this will save lots of problems for you.

2. If your not using CSS then use it, its an awsome language that wil again make your life easier and avoids clutter on your form page.

3. if your going to have multiple columns do not use tables please, their awful, same goes for frames. imo use float columns, im currently doing a A level project for my school using php / html / css and i can say that these float columns kick ass. you can give each individual columns their own unique style.


Sorry i cant help you with your problem, but gimme a pm and il be happy to help with w.e your stuck on

~Furrr



01/28/08 16:06 Login to rate this user's post!
mginn82 Profile
mginn82
View Profile of mginn82
Posts: 0
Joined: 11/21/2005
Credibility: 0 pts
RE: HTML??!!?? 

QUOTE


2. If your not using CSS then use it, its an awsome  language that wil again make your life easier and avoids clutter on your form page.


This is too true. If you seperate your content from your presentation into HTML and CSS, respectively, you can do some neat things.

I threw this page together one afternoon a couple years ago to play around with the content/presentation segregation.

clicky

The "Select a stylesheet:" is the neato part. You can drastically alter your entire site just by changing the CSS stylesheet pointer.



01/28/08 16:22 Login to rate this user's post!
CED 14 Profile
CED 14
View Profile of CED 14
Posts: 6
Joined: 01/17/2006
Credibility: 0 pts
RE: HTML??!!?? 

well thanks i am sure though that CSS is better but i am not in the mood to learn the whole language i might later but for a guidwebsite i can use my HTML knowledge it would be easier for me and my school work on top.

PS dont worry i will slice it to make it easier to load and make the quality a bit lower so it is not that big.

PSS plus i am not even sure that the webserver i use can do CSS!


CED 14



takeing sig requests just PM me.............IGN= Mazar Rackhammer -LOTRO IGN= leaderx (Human Captian lvl 11)or Olin (Dwarf lvl 4)server EN-Eldor



Studies show that 92% of teens listen to rap. If you are part of the 8% that listens to real music the add this to your signature.
01/28/08 16:40 Login to rate this user's post!
mginn82 Profile
mginn82
View Profile of mginn82
Posts: 0
Joined: 11/21/2005
Credibility: 0 pts
RE: HTML??!!?? 

QUOTE
well thanks i am sure though that CSS is better but i am not in the mood to learn the whole language i might later but for a guidwebsite i can use my HTML knowledge it would be easier for me and my school work on top.


It's much easier than it sounds. And really you don't even need to learn the entire "language." The example I pasted above would do exactly what you asked (just change the brackets and change the image to be the one you want.

QUOTE

PSS plus i am not even sure that the webserver i use can do CSS!


It would be pretty unlikely that it can't. Cascading Style Sheets have been around for over 10 years and are very widely used. Give it a try, it should take 5 minutes max to test out that code snippet and then you would know for sure.



01/28/08 16:58 Login to rate this user's post!
Jamnog Profile
Jamnog
View Profile of Jamnog
Posts: 82
Joined: 10/09/2005
Credibility: 0 pts
RE: HTML??!!?? 

perhaps put it in a table or just bring up the properties box for the image as an object and set it as a % there.



01/28/08 17:41 Login to rate this user's post!

clear gif
Don't Forget! - Rate users posts to reward or demerit their posts with Credibility!
GameAmp Footer