PDA

View Full Version : Remove Bio Image (not html)


TJP
Feb-26-2008, 10:47 PM
I have a few problems going on with my homepage...

First, before I figured out how to add an image to the bio via the "edit" button with html, I clicked on the bio image to upload one. Once I realized this wasn't the right way to do it, I deleted the gallery that it created hoping to remove that photo. Instead, it removed the gallery and kept the small image that now just goes to the main smugmug homepage. See what I mean here: http://www.tylerjonesphoto.com/. So how do I get rid of the little image??

Second, I would like the whole bio box to be centered. I'm trying to get the image to be centered in the bio box, and then bio box centered on the page. Similar to how I have it on my "Portraits" page. Would it be easier to just put a 50px border on the image and not enlarge the biobox?

Thanks for any help!!

Allen
Feb-26-2008, 11:01 PM
I have a few problems going on with my homepage...

First, before I figured out how to add an image to the bio via the "edit" button with html, I clicked on the bio image to upload one. Once I realized this wasn't the right way to do it, I deleted the gallery that it created hoping to remove that photo. Instead, it removed the gallery and kept the small image that now just goes to the main smugmug homepage. See what I mean here: http://www.tylerjonesphoto.com/. So how do I get rid of the little image??

Second, I would like the whole bio box to be centered. I'm trying to get the image to be centered in the bio box, and then bio box centered on the page. Similar to how I have it on my "Portraits" page. Would it be easier to just put a 50px border on the image and not enlarge the biobox?

Thanks for any help!!
Add these to your CSS. You increased the biobox width but you also have
to increase the width of the container it's in to get the page to center.

#homepage {
width: 930px;
margin: 0 auto;
}

#bioBox .photo {
display: none;
}

#userBio {
text-align: center;
}

TJP
Feb-27-2008, 07:28 PM
Add these to your CSS. You increased the biobox width but you also have
to increase the width of the container it's in to get the page to center.

#homepage {
width: 930px;
margin: 0 auto;
}

#bioBox .photo {
display: none;
}

#userBio {
text-align: center;
}

Thanks so much!! I appreciate it.

TJP
Feb-27-2008, 09:59 PM
Allen- I would certainly appreciate it if you could help me center one more thing...

I got the homepage looking how I want it (thanks for the help!), but now I noticed that my "portraits" page is not centered. I'm trying to line up the dark grey boxes so that they look like they're in the exact same position. The portraits page is just a simpleviewer flash embedded in the gallery's description, but I'm not sure what div or container the description belongs to in order to center it or set the width correctly.

Thanks for your help again.