Re: Website Problems in coding, colour, design etc. - Here is your thread.
ok im lost. all i know is that it now going to cost me a grand to keep up my web site.
You are not logged in. Please login or register
Next up, TEC judging!
Back to: Refugee Camp - Back to: Community - You are here: Website Problems in coding, colour, design etc. - Here is your thread.
ok im lost. all i know is that it now going to cost me a grand to keep up my web site.
Wait, what?
EDIT: I'm thinking of getting my own domain thingie. What is a good hosting company thingie? The only thing I know is Lunarpages.
Last edited by BertL (2008-08-31 19:03:51)
Wait, what?
Don't worrie about it.
and as for hosting i have no idea
Wait, what?
EDIT: I'm thinking of getting my own domain thingie. What is a good hosting company thingie? The only thing I know is Lunarpages.
MediaTemple.
But if you don't want to dish out on the money I would reccomend simply buying a domain name with GoDaddy.com or 123reg.co.uk then asking LegosJedi to connect it to your HBM account.
-Aled
I'm thinking of getting my own domain thingie. What is a good hosting company thingie? The only thing I know is Lunarpages.

BertL wrote:I'm thinking of getting my own domain thingie. What is a good hosting company thingie? The only thing I know is Lunarpages.
i think he means actual hosting not the domain name
BertL wrote:I'm thinking of getting my own domain thingie. What is a good hosting company thingie? The only thing I know is Lunarpages.
Those domains are useless and stupid.
-Aled
NOstudios wrote:BertL wrote:I'm thinking of getting my own domain thingie. What is a good hosting company thingie? The only thing I know is Lunarpages.
Those domains are useless and stupid.
-Aled
Just like you! olololololjkjkjkjkjkjkjkjk
if you don't want to dish out on the money I would reccomend simply buying a domain name with GoDaddy.com or 123reg.co.uk then asking LegosJedi to connect it to your HBM account.
Yeah, that's the problem. My HBM account is dead and LJ won't fix it.
I've been reading reviews and LunerPages looks like it used to be good but is becoming less reliable. Right now HostMonster seems to be a really good deal, the reviews look good and they even through in a free domain name it's about $6 a month right now.
Personally I would never host my site through someone else, becouse if there is a problem, like BertL is having it's hard to say how long it will take to fix, if you have your own host you know the terms and you don't have to worry about problems that you can't solve between yourself and the host
Last edited by SlothPaladin (2008-09-01 17:19:43)
I've just transferred my hosting to 000webhost.com which is a free web hosting service.
The stats are:
100,000mb Bandwidth monthly
350mb hosting.
So it's ok for me at the moment, plus it includes cPanel, I really hate Godaddy's control panel.
-Aled
123reg.co.uk
Probably, though I currently use GoDaddy.com
-Aled
Last edited by Aled Owen (2008-09-02 14:15:40)
Those are quite good prices aled if i need a domain i'll buy one of them.
I have a CSS menu that I went to indent (move in) when the mouse hovers over a selection in the menu. I'm not sure how to do it. I'm pretty sure though it requires javascript, but I don't know any javascript. So if you have any idea how to do this could be accomplished that would be great! ![]()
Yeah I wish I knew how to do that.
I have a CSS menu that I went to indent (move in) when the mouse hovers over a selection in the menu. I'm not sure how to do it. I'm pretty sure though it requires javascript, but I don't know any javascript. So if you have any idea how to do this could be accomplished that would be great!
Well, you could put the menu links in a special "class" or "id". Then in the CSS script you could have something like this:
a:hover.menulink {
color:blue;
font-weight:bold;
}That way if you hover over it, the thing will be bold. You can play around a lot with this stuff.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
a:hover.menulink {
color:black;
font-weight:bold;
}
</style>
</head>
<body>
<div class="menulink">
<a href="/Home.html"><img name="Home" src="Pictures/Menu/Home.png" height="72" width="72" alt="" /></a>
</div>
</body>
</html>This is what I did but nothing happened when I hovered my mouse over it.
Last edited by OneManFilms (2008-09-07 20:10:02)
Try putting the class inside the link leik this:
<a href="yumyum.php" class="menulink">-Aled
That did work either Aled and Yanzl was right it only works on text. Now I need to know how to do it with images and I'm almost sure that it uses javascript to switch two images or something like that, but I have no javascript knowledge.
Do you mean menu like this:
http://deletemestudios.110mb.com/
yes except with images instead of words ![]()
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
SITE
</title>
<style type="text/css">
#menu {
padding: 5px;
height: 20px;
align: center;
}
#nav {
padding: 0;
}
#nav li{
display: inline;
}
#nav li a {
float: left;
width: 100px;
height: 20px;
padding-top: 0;
}
#home a { background-image: url(home.jpg); }
#home a:hover { background-position: 0 -20px; }
</style>
</head>
<body>
<div id="menu">
<ul id="nav">
<li id="home"><a href=index.html></a></li>
</ul>
</div>
</body>
</html>The backgorund image is the image that must be tvice as high that you want it to be and one half is normal button, other is when hover.
yes except with images instead of words
Yanzl did it with images too. In fact, I rather like how Yanzl did it. I love it.
Page [ 2 of 6 ] Posts [ 26 to 50 of 146 ]
Back to: Refugee Camp - Back to: Community - You are here: Website Problems in coding, colour, design etc. - Here is your thread.