Computer HardwareXbox GamesGameCubePlaystation 2PSOnePC/Windows GamesGameboy AdvanceDreamcastNintendo 64Gameboy ColorNintendo DSSony PSPXbox 360Nintendo Wii GamesPS3 Games

Neoseeker is giving away:
3 copies of Lego Batman
2 copies of Gears of War 2
3 copies of 007 Quantum of Solace
4 of Call of Duty: World at War
1 copy of Castlevania DS
Neoseeker Forums » Programming and Design » HTML/CSS & NeoHome Help » Find the Fix!

Moderated by: Artificer
REPLY TO THIS THREAD   START NEW THREAD
Options: Print   subscribe   remove   send to friend   PM this thread to a friendNeoPM
Topic: Find the Fix!
Artificer
Sep 23, 08 at 8:01pm
Find the Fix!

Here's a game I thought of that I can think can prove to be a fun way for people of all skill sets to learn HTML and CSS.

One person will start off by posting a piece of code like this:

code
<div>Centered Text</div>


And then ask a question about how to "fix" the code to get it to do what he or she wants. So I could ask, "How do I center this text?"

Someone would then respond with another piece of code indicating what the fix is:

code
<div style="text-align: center;">Centered Text</div>


The first person who solves the problem correctly then gets the opportunity to post a piece of code and have someone else try to fix it.

The problem can be as simple or as difficult as you want and can involve any aspect of HTML or CSS. Make sense? If so I'll start things off with an easy one.




code
<a href="http://www.neoseeker.com">Neoseeker</a>


When I click on this link, I want the page to show in a new tab or window. How can I do that?



-------------------

Pandora.com | Thinkers perish; thoughts don't.
quote   quick quote   edit   quick edit   del  report
Members, log in or register to remove these ads.
TheViperX
Now known as Kamikaze
s-e-e-k-e-r

TheViperX's profileTheViperX's neohome
since: Feb 2008
Sep 23, 08 at 8:18pm
re: Find the Fix!

Is it:

code
<a href="http://www.neoseeker.com" target="_blank">Neoseeker</a>


Is it that?



♠♠♠



-------------------

quote   quick quote   edit   quick edit   del  report
Artificer
Sep 23, 08 at 8:24pm
re: Find the Fix!

You got it! Your turn.



-------------------

Pandora.com | Thinkers perish; thoughts don't.
quote   quick quote   edit   quick edit   del  report
TheViperX
Now known as Kamikaze
s-e-e-k-e-r

TheViperX's profileTheViperX's neohome
since: Feb 2008
Sep 23, 08 at 8:31pm
re: Find the Fix!

code
<h2>This is a heading</h2>


How would I centre align that without using the div tags?



♠♠♠



-------------------

quote   quick quote   edit   quick edit   del  report
Ecto5
Neoholic

wiki staff
starwars




Ecto5's profileEcto5's neohomeEmail Ecto5NeoPM Ecto5
since: May 2002
Sep 23, 08 at 9:16pm
re: Find the Fix!

code
<center><h2>This is a heading</h2></center>

<h2 style="width: 400px; margin-left: auto; margin-right: auto;">This is a heading</h2>

<h2 align="center">This is a heading</h2>

<h2 style="text-align: center;">This is a heading</h2>





-------------------


Team Cool Lightning Igniting Tigers Clan

quote   quick quote   edit   quick edit   del  report
TheViperX
Now known as Kamikaze
s-e-e-k-e-r

TheViperX's profileTheViperX's neohome
since: Feb 2008
Sep 23, 08 at 9:18pm
re: Find the Fix!

I really only needed one but in any case, Congratulations Ecto5. Now it's your turn.


♠♠♠



-------------------

quote   quick quote   edit   quick edit   del  report
Ecto5
Neoholic

wiki staff
starwars




Ecto5's profileEcto5's neohomeEmail Ecto5NeoPM Ecto5
since: May 2002
Sep 23, 08 at 9:48pm
re: Find the Fix!

el oh el

code
<div style="background-image: url(images/background.jpg'); width: 600px; margin-left: auto; margin-right: auto;">Content</div>


My code no worky.



-------------------


Team Cool Lightning Igniting Tigers Clan

quote   quick quote   edit   quick edit   del  report
TheViperX
Now known as Kamikaze
s-e-e-k-e-r

TheViperX's profileTheViperX's neohome
since: Feb 2008
Sep 23, 08 at 9:54pm
re: Find the Fix!

quote Ecto5
code
<div style="background-image: url(images/background.jpg'); width: 600px; margin-left: auto; margin-right: auto;">Content</div>

Well I know that you're missing the " ' " in between the brackets like so:
code
<div style="background-image: url('images/background.jpg'); width: 600px; margin-left: auto; margin-right: auto;">Content</div>

I'm not sure that's all though.


VрểгЁđĩŧ: Some confirmation please?


♠♠♠

[size=1][color=#666666]This message was edited by TheViperX on Sep 23 2008.



-------------------

quote   quick quote   edit   quick edit   del  report
Ecto5
Neoholic

wiki staff
starwars




Ecto5's profileEcto5's neohomeEmail Ecto5NeoPM Ecto5
since: May 2002
Sep 24, 08 at 12:38am
re: Find the Fix!

Let's be patient, now.

But yes, that was the error.



-------------------


Team Cool Lightning Igniting Tigers Clan

quote   quick quote   edit   quick edit   del  report
TheViperX
Now known as Kamikaze
s-e-e-k-e-r

TheViperX's profileTheViperX's neohome
since: Feb 2008
Sep 24, 08 at 1:02am
re: Find the Fix!

Most of this is from Vermillion's Navbar tutorial and a problem I encountered earlier.

code
<style type="text/css">

/*Navbar*/
#navbar {list-style:none;}

#navbar li {display:inline;
				 float:left;}

#navbar li a {text-decoration:none;
				   padding:9px;
				   spacing:2px;
				   background-color:#1e90ff;
				   color:#000000;
				   font-weight:bold;
				   font-family:Arial, Helvetica, sans-serif;}

#navbar li a:hover{background-color:#191970;
							color:#ffffff;}

</style>

<ul id="navbar">
<li><a href="#one">One</a></li> 
<li><a href="#two">Two</a></li> 
<li><a href="#three">Three</a></li> 
<li><a href="#four">Four</a></li> 
<li><a href="#five">Five</a></li> 
<li><a href="#six">Six</a></li> 
<li><a href="#seven">Seven</a></li> 
<li><a href="#eight">Eight</a></li> 
<li><a href="#nine">Nine</a></li>
<li><a href="#ten">Ten</a></li>
</ul>
        <div align="center"><h4>Home</h4></div><br /><br />

Hello.


Copy that into a notepad document and save as a .htm file, why is my supposedly "centered" header so far over to the right?



♠♠♠



-------------------

quote   quick quote   edit   quick edit   del  report
Blackfalcon
Ater Falconem
Hooked on Neo



Blackfalcon's profileBlackfalcon's neohomeNeoPM Blackfalcon
total posts: 4083
neopoints: 168
GameGrep pts: 327
since: Jan 2007
Sep 25, 08 at 7:05am
re: Find the Fix!

Is it due to the two "br" tags at the end?





-------------------

^Click^

quote   quick quote   edit   quick edit   del  report
TheViperX
Now known as Kamikaze
s-e-e-k-e-r

TheViperX's profileTheViperX's neohome
since: Feb 2008
Sep 25, 08 at 3:38pm
re: Find the Fix!

Nope, It's not that.

VрểгЁđĩŧ: It does have something to do with the "br" tag.


♠♠♠

[size=1][color=#666666]This message was edited by TheViperX on Sep 25 2008.



-------------------

quote   quick quote   edit   quick edit   del  report
Blackfalcon
Ater Falconem
Hooked on Neo



Blackfalcon's profileBlackfalcon's neohomeNeoPM Blackfalcon
total posts: 4083
neopoints: 168
GameGrep pts: 327
since: Jan 2007
Sep 26, 08 at 7:47am
re: Find the Fix!

Should they be in the div?





-------------------

^Click^

quote   quick quote   edit   quick edit   del  report
Whitefalcon
Niveus Falconem
ultra seeker



Whitefalcon's profileWhitefalcon's neohomeNeoPM Whitefalcon
total posts: 1272
since: Jun 2008
Sep 26, 08 at 8:20am
re: Find the Fix!

code
<style type="text/css">

/*Navbar*/
#navbar {list-style:none;}

#navbar li {display:inline;
				 float:left;}

#navbar li a {text-decoration:none;
				   padding:9px;
				   spacing:2px;
				   background-color:#1e90ff;
				   color:#000000;
				   font-weight:bold;
				   font-family:Arial, Helvetica, sans-serif;}

#navbar li a:hover{background-color:#191970;
							color:#ffffff;}

</style>

<ul id="navbar">
<li><a href="#one">One</a></li> 
<li><a href="#two">Two</a></li> 
<li><a href="#three">Three</a></li> 
<li><a href="#four">Four</a></li> 
<li><a href="#five">Five</a></li> 
<li><a href="#six">Six</a></li> 
<li><a href="#seven">Seven</a></li> 
<li><a href="#eight">Eight</a></li> 
<li><a href="#nine">Nine</a></li>
<li><a href="#ten">Ten</a></li>
</ul>
        <div align="center"><h4>Home</h4></div><br />
<br />

Hello.


Is this right? (Sorry if this is pathetic, Art made me come here )



-------------------


quote   quick quote   edit   quick edit   del  report
TheViperX
Now known as Kamikaze
s-e-e-k-e-r

TheViperX's profileTheViperX's neohome
since: Feb 2008
Sep 27, 08 at 6:19pm
re: Find the Fix!

Sorry my header still aligns right!! D:


♠♠♠



-------------------

quote   quick quote   edit   quick edit   del  report
[All dates in (PT) time]Threads List   « Next Newest   Next Oldest »
REPLY TO THIS THREAD   START A NEW THREAD


search:
Neoseeker Forums » Programming and Design » HTML/CSS & NeoHome Help » Find the Fix!



Jump to another forum:

Powered by neoforums v0.9.4 (equilibrium)
Copyright Neo Era Media, Inc. 1999-2008

neoseeker forum community
Neoseeker.com   |   Forum Rules   |   Forum FAQ   |   Neoseeker Terms of Use   |   Supermods On Duty [ server id: aeon ··· elapsed: 0.0953650475]
Affiliated sites:   GameGrep - Football Manager Wiki - Halo Wiki - MGS Wiki - GTA Wiki - Smackdown Wiki - Zelda Wiki - PS2seeker - Xbox seeker - GC seeker - DEVPEN - GFXcess