PDA

View Full Version : Google Search and BioBox


KMW
Jun-09-2008, 10:32 AM
Hi,

I followed some instructions on how to keep slideshow code from showing up in a google search, but I'm having problems. You can still see the code in the google search for my website and now my site description is showing above my slideshow on my homepage. Please help.

Thanks,
Kath

Heres my bio code:
<html>
<div id="biotext">Location Photography - Specializing in Babies, Children and Teens.</div>
********>
var ssConfig = {
AlbumID: '2799260',
newWindow: 'false',
transparent: 'true',

showLogo: 'false',
clickUrl: 'http://www.smugmug.com',
showThumbs: 'false',
showButtons: 'false',
crossFadeSpeed: '350'
};
SM.flash.insertSlideshow(600, 400, ssConfig, 'transparent');
</********
</html>

and in my CSS:
#bioText {display: none;}

KMW
Jun-09-2008, 07:21 PM
Hi,

I followed some instructions on how to keep slideshow code from showing up in a google search, but I'm having problems. You can still see the code in the google search for my website and now my site description is showing above my slideshow on my homepage. Please help.

Thanks,
Kath

Heres my bio code:
<html>
<div id="biotext">Location Photography - Specializing in Babies, Children and Teens.</div>
********>
var ssConfig = {
AlbumID: '2799260',
newWindow: 'false',
transparent: 'true',

showLogo: 'false',
clickUrl: 'http://www.smugmug.com',
showThumbs: 'false',
showButtons: 'false',
crossFadeSpeed: '350'
};
SM.flash.insertSlideshow(600, 400, ssConfig, 'transparent');
</********
</html>

and in my CSS:
#bioText {display: none;}

Does anybody know how to fix this?

denisegoldberg
Jun-10-2008, 03:31 AM
Does anybody know how to fix this?
CSS is CaSe SeNsItIvE. Based on what's in your bio, you need to add this to your CSS:

#biotext {
display: none;
}

--- Denise

KMW
Jun-10-2008, 04:15 AM
CSS is CaSe SeNsItIvE. Based on what's in your bio, you need to add this to your CSS:

#biotext {
display: none;
}

--- Denise

Thank you for your reply. That fixed the problem with my homepage. Does it take a while for the changes to show up in a google. I can still see code in a google search. I would like my site description to say "Specializing in Babies, Children, and Teens"

Thanks,
Kath

denisegoldberg
Jun-10-2008, 05:26 AM
That fixed the problem with my homepage. Does it take a while for the changes to show up in a google.
Yes. It will take a while for Google to update its info.

--- Denise