Fonts size in captions

gateway photogateway photo Registered Users Posts: 7 Beginner grinner
edited December 10, 2008 in SmugMug Support
Don't know what I did but I added a header and changed backround color on my navbar and now all my captions are as big as my Title.
#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: #000;
}
#navcontainer ul li a:hover {
color: #fff;
background-color: #036;
}
#bioBox .photo {
display: none;}
#userBio {
text-align: center !important;
}
.homepage #featuredBox {display:none;}
.galleries #categoriesBox {display:block !important;}
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox {
display: none;
}
.galleries #bioBox {
display: none;
}
.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox {
display: block;}
/* hides your name (including any 's) */
#userName {
display: none;
}
/* hides the word home */
#userHome {
display: none;
}
and in the custom header
<div align="center">
<h2>Gateway Photo
</div>
Thanks for any help,Tom

Comments

  • AllenAllen Registered Users Posts: 10,015 Major grins
    edited December 10, 2008
    Don't know what I did but I added a header and changed backround color on my navbar and now all my captions are as big as my Title.
    ...
    and in the custom header
    <div align="center">
    <h2>Gateway Photo
    </div>
    Thanks for any help,Tom
    Close the h2 tag.

    <div align="center">
    <h2>Gateway Photo</h2>
    </div>
    Al - Just a volunteer here having fun
    My Website index | My Blog
  • gateway photogateway photo Registered Users Posts: 7 Beginner grinner
    edited December 10, 2008
    Thanks again, Tom
Sign In or Register to comment.