PDA

View Full Version : Cannot Get Into Galleries


Tom Potter
Nov-14-2008, 03:20 PM
I suddenly cannot get into my galleries. Please help.

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

thx a lot

Tom

jfriend
Nov-14-2008, 05:03 PM
I suddenly cannot get into my galleries. Please help.

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

thx a lot

Tom

It is these two CSS rules at the end of your CSS that are hiding the galleries from the galleries page. Remove them and the galleries are there:

#homepageText {display: none;}
.galleries #homepageText {display: none !important;}


It is possible that this is happening because you are missing one or more closing </div> tags in the homepageText.

Allen
Nov-14-2008, 05:45 PM
...

It is possible that this is happening because you are missing one or more closing </div> tags in the homepageText.
John's correct and a very strong possibility, seen this before. By not closing
div the rest of the page is included in that div.


From WebDev you can see galleries box has an ancestor of #homepageText

Ancestors
html
body .homepage tempClass notLoggedIn bodyColor_Black galleries
div #bodyWrapper
center
span
div #homepageText
center
div #homepage .homepage tempClass notLoggedIn bodyColor_Black
div #homepageBoxes
div #categoriesBox .box last-of-type

I closed the div with WebDev and notice that #homepageText is not in the list.
Also your CSS to hide #homepageText now works.

*Please check back monthly for additional galleries and photos </span>
</center>
</div> << added
<h3>
<div id="navcontainer">


Ancestors
html
body .homepage tempClass notLoggedIn bodyColor_Black galleries
div #bodyWrapper
center
span
div #homepage .homepage tempClass notLoggedIn bodyColor_Black
div #homepageBoxes
div #categoriesBox .box last-of-type

Tom Potter
Nov-15-2008, 09:34 AM
Thank you so much Allen & Jfriend! :O)

John's correct and a very strong possibility, seen this before. By not closing
div the rest of the page is included in that div.


From WebDev you can see galleries box has an ancestor of #homepageText

Ancestors
html
body .homepage tempClass notLoggedIn bodyColor_Black galleries
div #bodyWrapper
center
span
div #homepageText
center
div #homepage .homepage tempClass notLoggedIn bodyColor_Black
div #homepageBoxes
div #categoriesBox .box last-of-type

I closed the div with WebDev and notice that #homepageText is not in the list.
Also your CSS to hide #homepageText now works.

*Please check back monthly for additional galleries and photos </span>
</center>
</div> << added
<h3>
<div id="navcontainer">


Ancestors
html
body .homepage tempClass notLoggedIn bodyColor_Black galleries
div #bodyWrapper
center
span
div #homepage .homepage tempClass notLoggedIn bodyColor_Black
div #homepageBoxes
div #categoriesBox .box last-of-type