how can i change the colour of my header from blue to black buttons
#navcontainer ul li a {
text-decoration: none;
padding: .2em 1em;
color: #fff;
background-color: #036;
}
#navcontainer ul li a:hover {
color: #fff;
background-color: #369;
}
Hi Edwin. To change the color of your Nav bar bottons you can change two things. First is in:
#navcontainer ul li a {
text-decoration: none;
padding: .2em 1em;
color: #fff;
background-color: #036;
}
"color: #fff;" is the text color and "background-color: #036;" is the button color.
change #036 to #000000 to make it black.
The other thing you can change is the color of the button when you hover the mouse over it. That is this code:
#navcontainer ul li a:hover {
color: #fff;
background-color: #369;
Again, "color: #fff;" is the text color and "background-color: #369;" is the button color.
Post if you have any other questions or don't understand what I wrote above. You can get more info on the nav bar here: Dgrin Tutorial
Comments
My Website index | My Blog
SmugMug Technical Account Manager
Travel = good. Woo, shooting!
nickwphoto
great advise
ed
http://www.whanphoto.com
can you tell me if i can arrange my gallerys in a horizontal order instead of a vertical order..
thanks ed
http://www.whanphoto.com
http://www.dgrin.com/showpost.php?p=300387&postcount=8
My Website index | My Blog
hello smug mug
can i arrange my gallerys in a horizantial order instead of a vertical on
Thanks Ed
www.whanphoto.com
http://www.whanphoto.com
Or, even cooler, look here:
http://www.dgrin.com/showthread.php?t=52811 for the 4-across trick
Portfolio • Workshops • Facebook • Twitter
Hi there could you please help me
Its been the 4 time now i have posted this question over 1 week, no body seems to reply to me.
could you please tell me if it is possible for my gallerys to be put into horizaintal order instead of a verticial order.
thanks for all your previous help in getting me up and running with my site
thanks ed
http://www.whanphoto.com
Code:
See the Mini-box hack #10 in the FAQ to organize your gallery thumbs. http://www.dgrin.com/showpost.php?p=300387&postcount=8
My Website index | My Blog
how can i change the colour of my header from blue to black buttons
im lost i tock the advise of a customer assistant but it changed nothing i have sent a few replys but i have not had any answere..
any help would be really appreashated..
Thanks for your time
heres my css
#my_banner {
width: 600px;
height: 120px;
margin: 0 auto;
background: url(/photos/320392671_wHpdR-L.jpg) no-repeat;
}
#navcontainer ul {
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}
#navcontainer ul li {
display: inline;
}
#navcontainer ul li a {
text-decoration: none;
padding: .2em 1em;
color: #fff;
background-color: #036;
}
#navcontainer ul li a:hover {
color: #fff;
background-color: #369;
}
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}
.galleries #bioBox {
display: none;
}
.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;}
#bioBox a {
text-decoration: none;
font-family: Times New Roman, verdana;
}
#bioBox .boxBottom {
background: none;
border: none;
border-top: none !important;
}
#feeds {display: none}
/* hides your name (including any 's) */
#userName {display: none;}
/* hides the word home */
#userHome {display: none;}
/* removed the 's */
.possess {display: none;}
#photoKeywords {display: none;}
#photoKeywords {display: none !important;}
#footer .nav {color: #666;}
/* ==================================================== */
/* == FAQ #18, Line up boxes with titles underneath === */
/* ============== Current as of 13 Feb 07 ============= */
/* ==================================================== */
.miniBox {width:122px; text-align:center; height:210px; margin:0 28px;}
.miniBox .photo {float:none; width:122px; height:auto; _height:1px;}
.miniBox .albumTitle {width:122px;}
.miniBox .description {width:122px;}
.miniBox .updated {width:122px;}
.loggedIn .miniBox {height:auto; min-height:300px;}
.loggedIn .miniBox .smbuttons {margin:0 auto; width:122px;}
.loggedIn .miniBox input {width:122px;}
.loggedIn .miniBox textarea {width:112px;}
.boxBottom .albumLarge {width:192px; height:350px; text-align:center; margin:0 24px;}
.albumLarge .photoLarge {float:none; width:192px; height:auto; _height:1px;}
.albumLarge .albumTitle {width:192px;}
.albumLarge .description {width:192px;}
.albumLarge .updated {width:192px;}
.loggedIn .boxBottom .albumLarge {height:auto; min-height:450px;}
.loggedIn .albumLarge .smbuttons {margin:0 auto; width:192px;}
.loggedIn .albumLarge input {width:192px;}
.loggedIn .albumLarge textarea {width:182px;}
http://www.whanphoto.com
#navcontainer ul li a {
text-decoration: none;
padding: .2em 1em;
color: #fff;
background-color: #036;
}
"color: #fff;" is the text color and "background-color: #036;" is the button color.
change #036 to #000000 to make it black.
The other thing you can change is the color of the button when you hover the mouse over it. That is this code:
#navcontainer ul li a:hover {
color: #fff;
background-color: #369;
Again, "color: #fff;" is the text color and "background-color: #369;" is the button color.
Post if you have any other questions or don't understand what I wrote above. You can get more info on the nav bar here: Dgrin Tutorial
SmugMug Technical Account Manager
Travel = good. Woo, shooting!
nickwphoto