Website coding tutorial websites |
Author: |
Message: |
DJKAL
Senior Member
Posts: 800 Reputation: 14
34 / / –
Joined: Oct 2005
|
O.P. RE: Website coding tutorial websites
quote: Originally posted by Absorbation
You can make it fade going down very easy, I suggest you try that
by coding?
how?!
"You don't sleep, you defragment!"
|
|
03-12-2006 03:21 PM |
|
|
John Anderton
Elite Member
Posts: 3908 Reputation: 80
37 / /
Joined: Nov 2004
Status: Away
|
RE: Website coding tutorial websites
quote: Originally posted by DJKAL
quote: Originally posted by Absorbation
You can make it fade going down very easy, I suggest you try that
by coding?
how?!
http://gtmf.us
You can find almost everytrick in the book on w3schools tbh
[
KarunAB.com]
[img]http://gamercards.exophase.com/459422.png[
/img]
|
|
03-12-2006 03:23 PM |
|
|
DJKAL
Senior Member
Posts: 800 Reputation: 14
34 / / –
Joined: Oct 2005
|
O.P. RE: Website coding tutorial websites
quote: Originally posted by John Anderton
You can find almost everytrick in the book on w3schools tbh
i havent seen how to set an image to fade though
"You don't sleep, you defragment!"
|
|
03-12-2006 03:26 PM |
|
|
absorbation
Elite Member
Posts: 3636 Reputation: 81
– / /
Joined: Feb 2005
|
RE: Website coding tutorial websites
Well you make a background image that takes most of the page (down) but like 1px thick. You then using css make it repeat to the side and stop repeating down. Then add a background colour to finished the fade effect
Check out this
code: <style type="text/css">
body
{
background-color: #000000;
background-image: url('bgdesert.jpg');
background-repeat: repeat-x
}
</style>
|
|
03-12-2006 03:27 PM |
|
|
DJKAL
Senior Member
Posts: 800 Reputation: 14
34 / / –
Joined: Oct 2005
|
O.P. RE: Website coding tutorial websites
ok - i've done that and its fine.... thanks
still no ideas on sorting out the image on the homepage though?
"You don't sleep, you defragment!"
|
|
03-12-2006 03:54 PM |
|
|
absorbation
Elite Member
Posts: 3636 Reputation: 81
– / /
Joined: Feb 2005
|
RE: Website coding tutorial websites
quote: Originally posted by DJKAL
ok - i've done that and its fine.... thanks
still no ideas on sorting out the image on the homepage though?
Easy in your img tag add code: align="right"
and it should work. Remove the <br /> tags underneath the logo
|
|
03-12-2006 03:59 PM |
|
|
DJKAL
Senior Member
Posts: 800 Reputation: 14
34 / / –
Joined: Oct 2005
|
O.P. RE: Website coding tutorial websites
the image wont be in the center then though will it?
i want the image in the center...but the text (hyperlinks) to the left of it
"You don't sleep, you defragment!"
|
|
03-12-2006 04:11 PM |
|
|
RaceProUK
Elite Member
Posts: 6073 Reputation: 57
39 / /
Joined: Oct 2003
|
RE: Website coding tutorial websites
Just one question: why is the page so long? Home pages should really have all the main links in the top part, so you don't have to scroll.
|
|
03-12-2006 04:40 PM |
|
|
DJKAL
Senior Member
Posts: 800 Reputation: 14
34 / / –
Joined: Oct 2005
|
O.P. RE: Website coding tutorial websites
thats what im tryng to sort ...
i want the links to "rise" and be next to the 2347ATC logo image but whilst keeping that in the center.
to make it "less plain" and also to stop veiwers havint to scrolll
This post was edited on 03-12-2006 at 04:45 PM by DJKAL.
"You don't sleep, you defragment!"
|
|
03-12-2006 04:43 PM |
|
|
RaceProUK
Elite Member
Posts: 6073 Reputation: 57
39 / /
Joined: Oct 2003
|
RE: Website coding tutorial websites
I heartily recommend you think about XHTML Strict, and move all formatting to CSS. Of course, if you wish to stick to Transitional, that's fine: it's for 'transitioning' between old HTML and XHTML Strict, after all.
Anyway:
- Remove all the <br />s from around the image
- Swap the h1 and h2
- Use CSS to set the image to 'float', with some positioning attributes to make it float in the right place (you may want to look at <div> tags for this)
|
|
03-12-2006 05:05 PM |
|
|
Pages: (6):
« First
«
1
2
3
[ 4 ]
5
6
»
Last »
|
|