OneManFilms

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.

What would a world without time be like?

BertL

Re: Website Problems in coding, colour, design etc. - Here is your thread.

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)

http://www.majhost.com/gallery/BertL/Stuff/stlsig.png

OneManFilms

Re: Website Problems in coding, colour, design etc. - Here is your thread.

BertL wrote:

Wait, what?

Don't worrie about it.
and as for hosting i have no idea

What would a world without time be like?

Aled Owen

Re: Website Problems in coding, colour, design etc. - Here is your thread.

BertL wrote:

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

Blah.

NOstudios

Re: Website Problems in coding, colour, design etc. - Here is your thread.

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.

www.freedomains.co.nr

http://www.majhost.com/gallery/NaldoBrick/blah/llfnosig.jpg
"It's Nick Durron. What did you expect?" -Hazzat

OneManFilms

Re: Website Problems in coding, colour, design etc. - Here is your thread.

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.

www.freedomains.co.nr

i think he means actual hosting not the domain name

What would a world without time be like?

Aled Owen

Re: Website Problems in coding, colour, design etc. - Here is your thread.

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.

www.freedomains.co.nr

Those domains are useless and stupid.

-Aled

Blah.

Ænema

Re: Website Problems in coding, colour, design etc. - Here is your thread.

Aled Owen wrote:
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.

www.freedomains.co.nr

Those domains are useless and stupid.

-Aled

Just like you! olololololjkjkjkjkjkjkjkjk

Ain't nuthin but an Æ thang.

BertL

Re: Website Problems in coding, colour, design etc. - Here is your thread.

Aled Owen wrote:

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.

http://www.majhost.com/gallery/BertL/Stuff/stlsig.png

SlothPaladin

Re: Website Problems in coding, colour, design etc. - Here is your thread.

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)

Aled Owen

Re: Website Problems in coding, colour, design etc. - Here is your thread.

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

Blah.

Rsteenoven

Re: Website Problems in coding, colour, design etc. - Here is your thread.

Seems like a good host. Aled, whats the best place to buy a domain name.

http://www.majhost.com/gallery/rsteenoven/Signatures/lolcat_staredowncat1.jpg

Aled Owen

Re: Website Problems in coding, colour, design etc. - Here is your thread.

123reg.co.uk

Probably, though I currently use GoDaddy.com

-Aled

Last edited by Aled Owen (2008-09-02 14:15:40)

Blah.

randomparrot

Re: Website Problems in coding, colour, design etc. - Here is your thread.

Those are quite good prices aled if i need a domain i'll buy one of them.

OneManFilms

Re: Website Problems in coding, colour, design etc. - Here is your thread.

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! smile

What would a world without time be like?

Eclipse

Re: Website Problems in coding, colour, design etc. - Here is your thread.

Yeah I wish I knew how to do that.

http://www.majhost.com/gallery/EclipseLuke/stuff3lol/cameraslowres.jpg
I'm awaiting 2024 April 8!

BertL

Re: Website Problems in coding, colour, design etc. - Here is your thread.

OneManFilms wrote:

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! smile

Well, you could put the menu links in a special "class" or "id". Then in the CSS script you could have something like this:

Code:
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.

http://www.majhost.com/gallery/BertL/Stuff/stlsig.png

OneManFilms

Re: Website Problems in coding, colour, design etc. - Here is your thread.

Code:
 <!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)

What would a world without time be like?

Yanzl

Re: Website Problems in coding, colour, design etc. - Here is your thread.

I think that's because that only works for text.

http://shrani.si/f/B/Qd/2hU10u74/banner.png

Aled Owen

Re: Website Problems in coding, colour, design etc. - Here is your thread.

Try putting the class inside the link leik this:

Code:
<a href="yumyum.php" class="menulink">

-Aled

Blah.

OneManFilms

Re: Website Problems in coding, colour, design etc. - Here is your thread.

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.

What would a world without time be like?

Yanzl

Re: Website Problems in coding, colour, design etc. - Here is your thread.

Do you mean menu like this:
http://deletemestudios.110mb.com/

http://shrani.si/f/B/Qd/2hU10u74/banner.png

OneManFilms

Re: Website Problems in coding, colour, design etc. - Here is your thread.

yes except with images instead of words smile

What would a world without time be like?

Yanzl

Re: Website Problems in coding, colour, design etc. - Here is your thread.

Code:
<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.

http://shrani.si/f/B/Qd/2hU10u74/banner.png

BertL

Re: Website Problems in coding, colour, design etc. - Here is your thread.

OneManFilms wrote:

yes except with images instead of words smile

Yanzl did it with images too. In fact, I rather like how Yanzl did it. I love it.

http://www.majhost.com/gallery/BertL/Stuff/stlsig.png