PDA

View Full Version : Need Help


mrjoe
Nov-01-2009, 03:37 AM
I have a search box at the top of my home page with Home,Login,Help and Search in it that was not there before also along with Smugmug to the top left. How do I remove those items off all my pages. Thanks




Joe

www.photographybymrjoe.com (http://www.photographybymrjoe.com)

J Allen
Nov-01-2009, 03:41 AM
I have a search box at the top of my home page with Home,Login,Help and Search in it that was not there before also along with Smugmug to the top left. How do I remove those items off all my pages. Thanks




Joe

www.photographybymrjoe.com (http://www.photographybymrjoe.com)




Try this:






#header_wrapper
{display:none;}

mrjoe
Nov-01-2009, 04:00 AM
Try this:






#header_wrapper
{display:none;}






Worked thanks Allen I have one more question if you don't mind. How can I remove the boxes from my nav_ bar and make it smaller. I don't know if that is what I want or not just tring some changes.

I am working on somethings but it takes me all day or maybe two to do it were it takes you guys 2mins Thanks for your help keep it up I don't know if you guys get told that enough. THANKS AGAIN


Joe

J Allen
Nov-01-2009, 04:11 AM
Worked thanks Allen I have one more question if you don't mind. How can I remove the boxes from my nav_ bar and make it smaller. I don't know if that is what I want or not just tring some changes.

I am working on somethings but it takes me all day or maybe two to do it were it takes you guys 2mins Thanks for your help keep it up I don't know if you guys get told that enough. THANKS AGAIN


Joe


Find this rule:




.menu ul li a, .menu ul li a:visited
{border: 1px solid #0000FF;}









This is where your blue border's around the text come from on your nav-bar...is this what you would like to remove??

mrjoe
Nov-01-2009, 04:25 AM
Find this rule:




.menu ul li a, .menu ul li a:visited
{border: 1px solid #0000FF;}









This is where your blue border's around the text come from on your nav-bar...is this what you would like to remove??


And what do i need to do to make the words smaller on the nav bar

J Allen
Nov-01-2009, 04:32 AM
And what do i need to do to make the words smaller on the nav bar

To only affect the words, edit this rule:




.menu ul li a,
.menu ul li a:visited {
display: block;
font-size: 9pt; /* main buttons */
color: #0000FF; /* main buttons text non-hover*/
text-decoration:none;
text-align: center; /* centers text in buttons */
width: 100px; /* main box width */
height: 27px; /* main box height */
/* border: 1px solid Blue; */ /* start your design with borders on, easier to position DD's & FO's */
/* border-width: 1px 1px 1px 1px; */
background: #000000;
/* main button color */
padding-left: 0px;
line-height: 25px; /* positions text up/down in box */
}

mrjoe
Nov-01-2009, 01:28 PM
To only affect the words, edit this rule:




.menu ul li a,
.menu ul li a:visited {
display: block;
font-size: 9pt; /* main buttons */
color: #0000FF; /* main buttons text non-hover*/
text-decoration:none;
text-align: center; /* centers text in buttons */
width: 100px; /* main box width */
height: 27px; /* main box height */
/* border: 1px solid Blue; */ /* start your design with borders on, easier to position DD's & FO's */
/* border-width: 1px 1px 1px 1px; */
background: #000000;
/* main button color */
padding-left: 0px;
line-height: 25px; /* positions text up/down in box */
}











Now how can i bring my banner down closer to the nav bar

Allen
Nov-01-2009, 02:03 PM
Now how can i bring my banner down closer to the nav bar
You must have a lot of blank space in your banner photo, Cutting the
height to 190x brings the nav up.

#my_banner {
width: 850px;
height: 190px;
margin:0 auto;
background:Url(http://www.photographybymrjoe.com/photos/699836658_Lpnta-L.jpg) no-repeat;
}


Working with the margin the banner can be brought towards to top of page also. This slides the top blank
part off the page.

#my_banner {
width: 850px;
height: 190px;
margin: -40px auto 0; /* top R/L bottom */
background:Url(http://www.photographybymrjoe.com/photos/699836658_Lpnta-L.jpg) no-repeat;
}

mrjoe
Nov-01-2009, 02:40 PM
You must have a lot of blank space in your banner photo, Cutting the
height to 190x brings the nav up.

#my_banner {
width: 850px;
height: 190px;
margin:0 auto;
background:Url(http://www.photographybymrjoe.com/photos/699836658_Lpnta-L.jpg) no-repeat;
}


Working with the margin the banner can be brought towards to top of page also. This slides the top blank
part off the page.

#my_banner {
width: 850px;
height: 190px;
margin: -40px auto 0; /* top R/L bottom */
background:Url(http://www.photographybymrjoe.com/photos/699836658_Lpnta-L.jpg) no-repeat;
}

one more thing Allen and I will leave you alone can we center it more it looks to far left . The banner. Once again thanks great job.

Allen
Nov-01-2009, 02:54 PM
one more thing Allen and I will leave you alone can we center it more it looks to far left . The banner. Once again thanks great job.
Just a couple of typos. That should be a zero and not an "Oh". :D
All numbers need the px, only zero does not.

#my_banner {
width: 850px;
height: 190px;
margin: -40px auto 0;/*topR/L bottom*/
background:Url(http://www.photographybymrjoe.com/photos/699836658_Lpnta-L.jpg) no-repeat;
}

mrjoe
Nov-01-2009, 03:02 PM
Just a couple of typos. That should be a zero and not an "Oh". :D
All numbers need the px, only zero does not.

#my_banner {
width: 850px;
height: 190px;
margin: -40px auto 0;/*topR/L bottom*/
background:Url(http://www.photographybymrjoe.com/photos/699836658_Lpnta-L.jpg) no-repeat;
}


Thanks Allen again worked great....