Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Web [Help]Rhapsody Portal

Joined
Jul 2, 2011
Messages
783
Reaction score
230
So, I attempted to code Rhapsody's portal that was released a while ago o-o.
The problem is, the background is not full, although i want it too be. Also, I want to learn how to code the buttons with CSS instead of it being an image all the time.

Here is the files:

Is there anything else that could be done to make this look like the psd? And don't flame me because, I'm trying to learn the right way.

Off Topic Question:
How do I make a 'external' font load before a site is 'actually' seen?
 
Joined
Jan 28, 2010
Messages
517
Reaction score
32
Attempting to code, or waiting for someone to code it and then ripping off it?

And why would you need to do that? Just make a hover over button and button in the css and have one normal as the normal image and then the hover over as the hover over one (faded version of the normal or whatever).

And for the bg image, include something like this in the body css div or whatever.
PHP:
background: url(images/bg.jpg) no-repeat center center fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
 
Upvote 0
Joined
Jul 2, 2011
Messages
783
Reaction score
230
lol, this time I'm actually trying to learn.
And why would you need to do that? Just make a hover over button and button in the css and have one normal as the normal image and then the hover over as the hover over one (faded version of the normal or whatever).

That's actually pretty smart. I'm gonna try that.

As, for the BG. I learned a bit of those
Thanks dude.
 
Upvote 0
may web.very maple.pls.
Loyal Member
Joined
Aug 12, 2009
Messages
1,810
Reaction score
606
I did my button full css3 no image, you should take a look at it :p
 
Upvote 0

Rey

The Shrewd
Loyal Member
Joined
Oct 29, 2011
Messages
1,336
Reaction score
196
you would like to take a look at this :

PHP Code :
PHP:
	background: url(../inc/images/bg.png) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: 100%;
 
Upvote 0
Back
Top