PDA

View Full Version : navbar and slideshow


robertodenis
Jul-07-2008, 06:41 AM
hello!

I can t find the answer by myself.

Is it possible to have the navbar menu on the left side on the home page and the slide show on the right side? How can I do it?

Thank you for your answers.

RD

www.robertodenis.name

Allen
Jul-07-2008, 08:08 AM
hello!

I can t find the answer by myself.

Is it possible to have the navbar menu on the left side on the home page and the slide show on the right side? How can I do it?

Thank you for your answers.

RD

www.robertodenis.name (http://www.robertodenis.name)
How's this? Add the new bold rules.


.homepage #navcontainer {
float: left;
margin-left: 30px;
}

#navcontainer ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}

.homepage #navcontainer ul li {
padding: 5px 0;
}

#navcontainer ul li {
display: inline;
}

.homepage #navcontainer ul li {
display: block;
}

#navcontainer ul li a {
text-decoration: ;
padding: .2em .1em;
color: #;
background-color: #;
}

#navcontainer ul li a:hover {
color: #;
background-color: #595454;
}

robertodenis
Jul-07-2008, 08:34 AM
How's this? Add the new bold rules.


.homepage #navcontainer {
float: left;
margin-left: 30px;
}

#navcontainer ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}

.homepage #navcontainer ul li {
padding: 5px 0;
}

#navcontainer ul li {
display: inline;
}

.homepage #navcontainer ul li {
display: block;
}

#navcontainer ul li a {
text-decoration: ;
padding: .2em .1em;
color: #;
background-color: #;
}

#navcontainer ul li a:hover {
color: #;
background-color: #595454;
}




Thank you Allen.