Thanks anyway Marten, much appreciated...............
3 of 3 |
3 |
Thanks anyway Marten, much appreciated...............
Would anyone be able to help me figure out the proper way to remove the banner area completely from this theme? I would like my home page to be a photo album page with the flash slideshow plugin in the middle, and the menu options across the top. Of course, the rest of the pages will need to have the banner image holder, so I’ll use a duplicate of the original theme in order to make my edits.
Would anyone be able to help me figure out the proper way to remove the banner area completely from this theme? I would like my home page to be a photo album page with the flash slideshow plugin in the middle, and the menu options across the top. Of course, the rest of the pages will need to have the banner image holder, so I’ll use a duplicate of the original theme in order to make my edits.
Hi,
Try adding this to the Custom CSS Pane of the Page Inspector:
#banner{
display: none;
}
Marten
Would anyone be able to help me figure out the proper way to remove the banner area completely from this theme? I would like my home page to be a photo album page with the flash slideshow plugin in the middle, and the menu options across the top. Of course, the rest of the pages will need to have the banner image holder, so I’ll use a duplicate of the original theme in order to make my edits.
Hi,
Try adding this to the Custom CSS Pane of the Page Inspector:
#banner{
display: none;
}
Marten
Thanks, I’ll give that a shot when I get home tonight!
Would anyone be able to help me figure out the proper way to remove the banner area completely from this theme? I would like my home page to be a photo album page with the flash slideshow plugin in the middle, and the menu options across the top. Of course, the rest of the pages will need to have the banner image holder, so I’ll use a duplicate of the original theme in order to make my edits.
Hi,
Try adding this to the Custom CSS Pane of the Page Inspector:
#banner{
display: none;
}
Marten
Hey Marten -
That seems to have worked for removing the banner, but the transparent border around the top of where the photo album used to start didn’t move as well and is now awkardly behind the flash plugin. Any thoughts on how to move that up?
Thanks for your help so far!
Nate
Hi Nate,
This is the best I can come up with at this late hour! It’s not exactly what you’re looking for and I can’t guarantee that it won’t cause chaos elsewhere on the page…
#banner{
display: none;
}
#content {
position: absolute;
top: 40px;
}
Cheers
Marten
Hi Nate,
This is the best I can come up with at this late hour! It’s not exactly what you’re looking for and I can’t guarantee that it won’t cause chaos elsewhere on the page…
#banner{
display: none;
}
#content {
position: absolute;
top: 40px;
}
Cheers
Marten
Thanks! With that and a little manipulation of the #footer element, I think I’ve got what I want.
3 of 3 |
3 |