View Full Version : how move up album description?
magicpic
Sep-26-2007, 06:52 PM
here is my site..I was wondering what do I need to put in the css to move this up closer to my navbar..thanks widget:scratch
http://widgetr.smugmug.com/gallery/3518957
scwalter
Sep-26-2007, 06:57 PM
here is my site..I was wondering what do I need to put in the css to move this up closer to my navbar..thanks widget:scratch
http://widgetr.smugmug.com/gallery/3518957
Change the 30px to something like 10px. This will change it in all places, so double check that it looks good on the rest of your site.
-Scott
#navcontainer {
position:relative;
display:block;
z-index:99;
padding:10px 0px 30px 0px; /* spacing around menu - top right bottom left */
height: 20px; /* menu container */
width: 560px; /* width of menu - minimize this untill doesn't wrap to two lines - too large effects
centering */
_width: 560px; /* width for IE */
margin:0 auto; /* this should center navbar */
}
magicpic
Sep-26-2007, 07:20 PM
Change the 30px to something like 10px. This will change it in all places, so double check that it looks good on the rest of your site.
-Scott
#navcontainer {
position:relative;
display:block;
z-index:99;
padding:10px 0px 30px 0px; /* spacing around menu - top right bottom left */
height: 20px; /* menu container */
width: 560px; /* width of menu - minimize this untill doesn't wrap to two lines - too large effects
centering */
_width: 560px; /* width for IE */
margin:0 auto; /* this should center navbar */
}
could I just put something in css album description on margin top
scwalter
Sep-26-2007, 07:30 PM
could I just put something in css album description on margin top
Yes, there are many ways to achieve this. With any method, if you don't want it to affect your whole site, you can get more specific by including the gallery number.
Either of these will work.
.gallery_3518957 #albumDescription {
margin-top:-20px ;
}
.gallery_3518957 #navcontainer {
padding:10px 0px 10px 0px;
}
You can also contain it completely in that gallery, by adding either of the above to your album description between these two tags.
<style type="text/css">
</style>
-Scott
vBulletin® v3.8.5, Copyright ©2000-2013, Jelsoft Enterprises Ltd.