Forum Moderators: mack
[edited by: mack at 5:19 pm (utc) on July 16, 2005]
[edit reason] Url removed. See TOS [webmasterworld.com] [/edit]
like here:
<td onmouseover="chgBg(m1,'m1tlm0',3);exM(m1,'none','',event)" onmouseout="chgBg(m1,'m1tlm0',0,1)" id="m1tlm0" class="m1mit" bgcolor="#000000"><a id="m1tlm0a" style="font-weight:bold;text-decoration: none " class="m1CL0" href="http://www.savingthe modsomeworkherebyremovingthedomainname.org" >Home</a></td>
all of that can be done using css, and you could be left with eg., <td class="tdstuff"><a href="#">Home</a></td> in your html file.
btw didnt know what layout master is. did a search and what i found LOOKS inviting, but id stay clear off it...just spend some time with good css tutorials. youll find things so much helpful then
cheers :)
the menu was done in another cheat program! so do you know of a tutorial that uses simple kindergarden language to explain css? when you talk about stylingthe look of the page or positioning, i don't freak out. but the menu thing, made my chest tight. i think i'm developing CSS PTSD!
start with these:
[echoecho.com...]
[w3schools.com...]
and then move over to:
[webmasterworld.com...]
by this time youll be knowledgeable enough to help out other people :)
also use a good WYSIWYG editor like deamweaver mx 2004. many people would tell you not to use it. but atleast initially youd better use it. keep checking the desin and the code and pretty soon youll get a good grap over everything
hope it helps
best of luck
"all of that can be done using css, and you could be left with eg., <td class="tdstuff"><a href="#">Home</a></td> in your html file. "
So i can replace a lot of my javascript functions with CSS, and stop giving myself a headache? Will CSS handle image swaps? If so it sounds like i need to go check out those tutorials.
also use a good WYSIWYG editor like deamweaver mx 2004.
This may be true for very basic CSS functions like colors, fonts, etc. But when it comes to complex layouts with CSS you cannot trust (or even understand) the DESIGN view in Dreamweaver. The only reason I use Dreamweaver at this point is because it color codes every bit of code for you, and it keeps everything organized for you in a neat little package.
Am i reading this correctly?
[quote]body {
margin: 0;
padding: 0;
color: #9966FF;
background-color: #ebebeb;
}
#div {
positon: relative;
color: #CCCCCC;
font-size: 1em;
width: 100%;
}
#div ul {
width: 25%;
margin-left: 35%;
margin-top: 25%;
positon: relative;
background-color:#999999;
}
#div li {
list-style: none;
padding: .5em 1em .5em 1em;
}
#div li a {
font-family: Verdana, Arial, Helvetica, sans-serif;
color:#66CCFF;
background-color:#999999;
text-decoration: none;
white-space: nowrap;
}
#div li a:hover {
color:#FFF;
background-color:#000;
text-decoration: none;
}
-----html-----
<body>
<div id="div">
<ul>
<li><a href="#">Lorem ipsum dolor sit amet</a></li>
<li><a href="#">consectetur adipisicing elit</a></li>
<li><a href="#">sed do eiusmod tempor incididunt</a></li>
</ul>
</div>
</body>
Just so i know - what *should* this do?