Envision, Create, Share

Welcome to HBGames, a leading amateur game development forum and Discord server. All are welcome, and amongst our ranks you will find experts in their field from all aspects of video game design and development.

Hay I finaly Finished My website and I need some feedback

Status
Not open for further replies.

ryex

Member

http://www.asantear.890m.com/Banner.png[/img]
Click image to enter


Hay I just finished this site but I had a bit of trouble getting to look right and I'm not sure if other are seeing it the same way I am.  so visit the site and tel me what you think. dose it look ok? is there something clearly wrong or not look right?is it easy to navigate? thats the kind of questions I'm look to answer. there is not that much content at the moment so please don't make to much of a deal about that.
 
First, the forum skin doesn't match with the mainsite - either port the forum skin or make one yourself.

The design itself is less than impressive.  On the homepage, you forgot to add a base a style in your css.  It looks really ridiculous... although it's fine in the other pages, just not on the homepage.

Your banner looks really awkward.  Assuming you have access to Photoshop, here is a tutorial: http://www.garysimon.net/logotutorial/ If you don't have photoshop, that is still a good tutorial.  And why is there a ' in the name of your site? That is plain annoying.

Good luck with your site.  :smile:

Edit, also, linking to pirated software is bad  :shock:
 

ryex

Member

thanks for the input!

I don't have clue what is going on the home page all the lings should be a gray like the other pages and they are after you have visited them but it not working right on the home page
 
See in your CSS?

Code:
A:visited		{ color: #C0C0C0; font-weight:bold; text-decoration: none; }	
A:active		{ color: #358391; font-weight:bold; text-decoration: none;  }	
A:hover		{ color: #358391; font-weight:bold; text-decoration: none;  }

there should be just an A { color: etc} in there.  That's what's missing.

Good luck on your site.
 
Or, alternatively, change:
Code:
A:visited		{ color: #C0C0C0; font-weight:bold; text-decoration: none; }

to:
Code:
A:visited, A:link	{ color: #C0C0C0; font-weight:bold; text-decoration: none; }
 
and this would be even more cleaner:
Code:
a {
    font-weight:bold;
    text-decoration: none;
}
a:link,
a:visited {
    color: #C0C0C0;
}	
a:hover,
a:active {
    color: #358391;
}
note that the order matters: first link, then visited, then hover, and finally active. (some browsers have bugs *cough*IE*cough*)
 

___

Sponsor

No no those aren't bugs they're very exclusive features, you should have asked the MS devs about it ;)  IE7's 'features' are so awesome too because they're less documented, so you can write some nice standard CSS2.1 and be charmed and amazed at the fresh new ways IE7 will render it compared to the boring old 'web standards' browsers.  It may even differ quite a bit from the way IE6 does it; it's so awesome I have to keep IE6 on one computer and IE7 on another just so I can FULLY ENJOY the Microsoft experience!

... sorry rant.
 
lmfao at the above conversation, btw, can't get to the website, which sort of dimishes the purpose of this topic...

If the topic has no purpose, don't necropost then :/ ~Wyatt
 
Status
Not open for further replies.

Thank you for viewing

HBGames is a leading amateur video game development forum and Discord server open to all ability levels. Feel free to have a nosey around!

Discord

Join our growing and active Discord server to discuss all aspects of game making in a relaxed environment. Join Us

Content

  • Our Games
  • Games in Development
  • Emoji by Twemoji.
    Top