Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
evropa #1
center a layout
how would i be able to center this? is setting the tables aligment to center
the only way?
<!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=iso-8859-1" />
<title>Untitled Document</title>
<link href="css.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table width="689" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="689" height="27" valign="top" class="links" id="main"><a
href="http://ccsd.net/schools/liberty/">LIBERTY</a> <img
src="images/spacerd.png" width="15" height="14" /><a
href="http://ccsd.net/schools/liberty/prinNotes.htm">ADMINISTRATION</a> <img
src="images/spacerd.png" width="15" height="14" />SCHOOL INFO <img
src="images/spacerd.png" width="15" height="14" />INTOUCH <img
src="images/spacerd.png" width="15" height="14" />ACTIVITIES </td>
</tr>
</table>
<table width="689" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="689" height="14"
valign="top"><!--DWLayoutEmptyCell--> </td>
</tr>
</table>
<table width="200" border="0" cellpadding="0" cellspacing="0" class="sheading">
<tr>
<td width="200" height="242" valign="top" class="sections">WELCOME TO LHS
<br />
<p class="stext">Mrs. Kelly Bucherie, Principal<br />
<br />
3700 Liberty Heights Avenue<br />
Henderson, NV 89052<br />
702-799-2270 </p></td>
</tr>
</table>
</body>
</html>
#main {
background-color: #990000;
}
.links {
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
font-weight: normal;
color: #FFCCCC;
padding-top: 4px;
padding-left: 5.5px;
}
a:link {
color: #FFCCCC;
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
text-decoration: none;
}
a:hover {
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
text-decoration: underline;
}
a:active {
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
color: #666666;
text-decoration: none;
}
.space {
background-color: #FFFFFF;
}
.sections {
background-image: url(images/Untitled-4.png);
background-repeat: no-repeat;
}
a {
text-decoration: none;
}
.sheading .sections {
color: #FFFFFF;
padding-top: 8px;
padding-left: 8px;
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
font-weight: normal;
text-decoration: none;
}
.stext {
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
font-style: normal;
font-weight: normal;
color: #666666;
text-decoration: none;
}
i would also like to move everything down so i would be able to a heading.
thanks in advance
evropa Guest
-
How to center a layer ?
Hello friends.. I have created a pop up menu with a tool that creates de code in Javascript. The I have setted it on a layer (if I do not do it, the... -
How to get the center of an object?
I want to let some objects in my scene rotate with its center. These objects maybe be far from the origin. I can not use the 'model.worldposition',... -
<center>
Is there a way to use the html code fragment to insert <center> </center> to center the page. It's a pain to redo it every time you update all the... -
Center a div tag
Hi The following div tag displays with a border. However, I want it to display center on the page. Any ideas welcome thanks jim <div... -
How is KEH Repair center !!
"Steve Merrick" <steve@keh.com> wrote in message news:3f1eba74.0306251424.4f80088f@posting.google.com...... -
Murray *TMM* #2
Re: center a layout
Try this -
<!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=iso-8859-1" />
<title>Untitled Document</title>
<link href="css.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
body {
width:689px;
margin:0 auto;
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
}
#main {
background-color: #990000;
}
.links {
font-size: 11px;
color: #FCC;
padding-top: 4px;
padding-left: 5px;
}
a {
text-decoration: none;
}
#main a {
color: #FFCCCC;
}
#main a:hover {
text-decoration: underline;
}
#main a:active {
color: #666666;
}
.space {
background-color: #FFFFFF;
}
.sections {
background-image: url(images/Untitled-4.png);
background-repeat: no-repeat;
}
.sheading .sections {
color: #FFFFFF;
padding-top: 8px;
padding-left: 8px;
font-size: 11px;
}
.stext {
font-size: 11px;
color: #666666;
}
-->
</style></head>
<body>
<table width="689" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="689" height="27" valign="top" class="links" id="main"><a
href="http://ccsd.net/schools/liberty/">LIBERTY</a> <img
src="images/spacerd.png" width="15" height="14" /><a
href="http://ccsd.net/schools/liberty/prinNotes.htm">ADMINISTRATION</a> <img
src="images/spacerd.png" width="15" height="14" />SCHOOL INFO <img
src="images/spacerd.png" width="15" height="14" />INTOUCH <img
src="images/spacerd.png" width="15" height="14" />ACTIVITIES </td>
</tr>
</table>
<table width="689" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="689" height="14"
valign="top"><!--DWLayoutEmptyCell--> </td>
</tr>
</table>
<table width="200" border="0" cellpadding="0" cellspacing="0"
class="sheading">
<tr>
<td width="200" height="242" valign="top" class="sections">WELCOME TO
LHS
<br />
<p class="stext">Mrs. Kelly Bucherie, Principal<br />
<br />
3700 Liberty Heights Avenue<br />
Henderson, NV 89052<br />
702-799-2270 </p></td>
</tr>
</table>
</body>
</html>
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"evropa" <webforumsuser@macromedia.com> wrote in message
news:dk1p9i$43i$1@forums.macromedia.com...> how would i be able to center this? is setting the tables aligment to
> center
> the only way?
> <!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=iso-8859-1" />
> <title>Untitled Document</title>
> <link href="css.css" rel="stylesheet" type="text/css" />
> </head>
>
> <body>
> <table width="689" border="0" cellpadding="0" cellspacing="0">
>
> <tr>
> <td width="689" height="27" valign="top" class="links" id="main"><a
> href="http://ccsd.net/schools/liberty/">LIBERTY</a> <img
> src="images/spacerd.png" width="15" height="14" /><a
> href="http://ccsd.net/schools/liberty/prinNotes.htm">ADMINISTRATION</a>
> <img
> src="images/spacerd.png" width="15" height="14" />SCHOOL INFO <img
> src="images/spacerd.png" width="15" height="14" />INTOUCH <img
> src="images/spacerd.png" width="15" height="14" />ACTIVITIES </td>
> </tr>
> </table>
> <table width="689" border="0" cellpadding="0" cellspacing="0">
>
> <tr>
> <td width="689" height="14"
> valign="top"><!--DWLayoutEmptyCell--> </td>
> </tr>
> </table>
> <table width="200" border="0" cellpadding="0" cellspacing="0"
> class="sheading">
>
> <tr>
> <td width="200" height="242" valign="top" class="sections">WELCOME TO
> LHS
> <br />
> <p class="stext">Mrs. Kelly Bucherie, Principal<br />
> <br />
> 3700 Liberty Heights Avenue<br />
> Henderson, NV 89052<br />
> 702-799-2270 </p></td>
> </tr>
> </table>
> </body>
> </html>
>
> #main {
> background-color: #990000;
> }
> .links {
> font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
> font-size: 11px;
> font-style: normal;
> font-weight: normal;
> color: #FFCCCC;
> padding-top: 4px;
> padding-left: 5.5px;
> }
> a:link {
> color: #FFCCCC;
> font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
> text-decoration: none;
> }
> a:hover {
> font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
> text-decoration: underline;
> }
> a:active {
> font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
> color: #666666;
> text-decoration: none;
> }
>
> .space {
> background-color: #FFFFFF;
> }
> .sections {
> background-image: url(images/Untitled-4.png);
> background-repeat: no-repeat;
> }
> a {
> text-decoration: none;
> }
>
> .sheading .sections {
> color: #FFFFFF;
> padding-top: 8px;
> padding-left: 8px;
> font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
> font-size: 11px;
> font-style: normal;
> font-weight: normal;
> text-decoration: none;
> }
> .stext {
> font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
> font-size: 11px;
> font-style: normal;
> font-weight: normal;
> color: #666666;
> text-decoration: none;
> }
>
>
> i would also like to move everything down so i would be able to a heading.
> thanks in advance
>
Murray *TMM* Guest
-
evropa #3
Re: center a layout
works perfectly, thank you.
should i open new threads for my other questions or will you be able to help
me out?
i would also like to move everything down so i would be able to add a heading.
i would like a bigger space between my links, ive added a image to do that.
ive also just put random text and set its color to whatever its background
color is,but im sure theres a better way;/
evropa Guest
-
Murray *TMM* #4
Re: center a layout
You can leave those questions here.
Just add it above the table. It will push the table down (although not if> i would also like to move everything down so i would be able to add a
> heading.
you use a layer for it).
Just add a bottom margin to your a tag style rule.> i would like a bigger space between my links
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"evropa" <webforumsuser@macromedia.com> wrote in message
news:dk2tnk$imq$1@forums.macromedia.com...> works perfectly, thank you.
>
> should i open new threads for my other questions or will you be able to
> help
> me out?
>
> i would also like to move everything down so i would be able to add a
> heading.
>
> i would like a bigger space between my links, ive added a image to do
> that.
> ive also just put random text and set its color to whatever its background
> color is,but im sure theres a better way;/
>
>
>
Murray *TMM* Guest



Reply With Quote

