PDA

View Full Version : Remove double lines around bio box and gallery pages


squash
Apr-12-2009, 04:35 AM
I searched several posts and tried some different things out but have not had anything work yet.

Basically I am trying to remove the double line from the bio box / slide show as well as on certain gallery pages (galleries, services, about me, contact)

http://www.momentsinlifecaptured.com/


Also, I removed the gallery navigation from 1 of my galleries but was unable to remove it from my about me page

http://www.momentsinlifecaptured.com/gallery/7624515_t4nRh

This is the "Gallery Page 1" text that I'm trying to remove. I used the same code as for my Service page but it didn't seem to work.

Any help would be appreciated.

Thanks!

-Suhash

denisegoldberg
Apr-12-2009, 04:58 AM
...I am trying to remove the double line from the bio box / slide show as well as on certain gallery pages (galleries, services, about me, contact)

Also, I removed the gallery navigation from 1 of my galleries but was unable to remove it from my about me page
You have errors in your CSS that is causing all lines below the errors to be ignored. Comments in CSS start with /* and end with */. Unfortunately you have entered your comments like this:
/* .notLoggedIn .gallery_7637168 #breadcrumb {display: none;} /*
Either remove those lines entirely, or change them so that they are recognized as comments, like this:

/* .notLoggedIn .gallery_7637168 #breadcrumb {display: none;} */

To remove the box around your homepage slideshow, add this CSS:

#bioBox {
border: none;
}
You can remove the box from your other pages, but I'd recommend starting by changing to a theme that doesn't use that box. I have a bit of a problem understanding why you would choose a theme like black arts and then spend your time removing the elements of the theme. Why use that theme then?

--- Denise

squash
Apr-12-2009, 11:06 AM
You have errors in your CSS that is causing all lines below the errors to be ignored. Comments in CSS start with /* and end with */. Unfortunately you have entered your comments like this:
/* .notLoggedIn .gallery_7637168 #breadcrumb {display: none;} /*
Either remove those lines entirely, or change them so that they are recognized as comments, like this:

/* .notLoggedIn .gallery_7637168 #breadcrumb {display: none;} */

To remove the box around your homepage slideshow, add this CSS:

#bioBox {
border: none;
}
You can remove the box from your other pages, but I'd recommend starting by changing to a theme that doesn't use that box. I have a bit of a problem understanding why you would choose a theme like black arts and then spend your time removing the elements of the theme. Why use that theme then?

--- Denise

Thanks Denise - i didn't realize i screwed up the comments - i just didn't want to lose how to remove the breadcrumbs on some pages.... not sure if I want them there yet.

Good point about the correct theme....it's something I explored when I first set up the site.. but then gradually kept tweeking to the point where it's very different now. I just changed to a more appropriate theme which is closer to what I'd like. I need to make some adjustments to my banner now but I like this a lot better.

Appreciate the suggestions. I also checked out your site - very nice work - I especially like the coastal shots.

thanks again.

-Suhash