PDA

View Full Version : Home Page


Dickie Peet
Sep-25-2008, 10:53 AM
I had a slideshow on my homepage and worked perfect. I decided that I wanted to just put a picture there. It's working but the Nav bar and the smugmug footer is right in the middle of the photo. For now I have a photo that the subject is concentrated towards the bottom of the shot. How can I fix this?


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

Mark
mark@markstrawn.com

Allen
Sep-25-2008, 06:06 PM
I had a slideshow on my homepage and worked perfect. I decided that I wanted to just put a picture there. It's working but the Nav bar and the smugmug footer is right in the middle of the photo. For now I have a photo that the subject is concentrated towards the bottom of the shot. How can I fix this?


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

Mark
mark@markstrawn.com
Did you put it between html tags?

<html>
<img src="/photos/xxxxxxxxxx_xxxxx-M.jpg">
</html>

Dickie Peet
Sep-29-2008, 12:09 PM
Did you put it between html tags?

<html>
<img src="/photos/xxxxxxxxxx_xxxxx-M.jpg">


</html>

Yahh...It is still not working. I have no clue on how to fix that.

Thanks,
Mark

Allen
Sep-29-2008, 12:52 PM
Yahh...It is still not working. I have no clue on how to fix that.

Thanks,
Mark
You have a div or something unclosed in your bio.

Dickie Peet
Sep-29-2008, 12:55 PM
You have a div or something unclosed in your bio.

I did have some text in there....I deleted it all and saved and it's still there. The code I used went into my css box.

Allen
Sep-29-2008, 01:00 PM
I did have some text in there....I deleted it all and saved and it's still there. The code I used went into my css box.
Haha, thought I was seeng your bio box photo but that's your page background.
Back to your original post, it is not working, that's your background photo.
Look in your control panel under the homepage tab and click show for your bio.

Allen
Sep-29-2008, 01:20 PM
...
Change you bio to this. Getting closer.

<html>
<center>
<a href="/photos/382889008_Hmb92-XL.jpg">
<img src="http://www.markstrawn.com/photos/382889008_Hmb92-L.jpg">
</a>
</center>
</html>

Dickie Peet
Sep-29-2008, 01:22 PM
Haha, thought I was seeng your bio box photo but that's your page background.
Back to your original post, it is not working, that's your background photo.
Look in your control panel under the homepage tab and click show for your bio.

Still nothing...I did mark show. It still hasn't done anything. There isn't anything in my bio part now. Is that ok?

Dickie Peet
Sep-29-2008, 01:29 PM
Still nothing...I did mark show. It still hasn't done anything. There isn't anything in my bio part now. Is that ok?

Awesome....Is it possible to make it so you don't have to scroll on my homepage...Maybe I should substitute with a smaller picture.

Dickie Peet
Sep-29-2008, 01:31 PM
Awesome....Is it possible to make it so you don't have to scroll on my homepage...Maybe I should substitute with a smaller picture.

Can this picture be right click protected?

Allen
Sep-29-2008, 02:29 PM
Can this picture be right click protected?
Yes by doing it another way. Add a transparent gif on top of the photo. The
width and height the same as your photo.

Change your bio to this.

<html>
<center>
<div id="myBioPhoto">
<a href="/galleries">
<img src="/img/spacer.gif" width="540" height="450" border="0" alt="">
</a>
</div>
</center>
</html>

add this to your CSS

#myBioPhoto {
width: 540px;
height: 450px;
margin: 0 auto;
background: url(/photos/382889008_Hmb92-M.jpg) no-repeat;
}

Dickie Peet
Oct-02-2008, 12:05 PM
Yes by doing it another way. Add a transparent gif on top of the photo. The
width and height the same as your photo.

Change your bio to this.

<html>
<center>
<div id="myBioPhoto">
<a href="/galleries">
<img src="/img/spacer.gif" width="540" height="450" border="0" alt="">
</a>
</div>
</center>
</html>

add this to your CSS

#myBioPhoto {
width: 540px;
height: 450px;
margin: 0 auto;
background: url(/photos/382889008_Hmb92-M.jpg) no-repeat;
}



Should I completely wipe all my previous bio out? I'm not sure I follow you with the GIF on top of my image. You me reopen in photohshop and put the gif layer on top of the photo them flatten image?

Allen
Oct-04-2008, 11:19 AM
Should I completely wipe all my previous bio out? I'm not sure I follow you with the GIF on top of my image. You me reopen in photohshop and put the gif layer on top of the photo them flatten image?
Yes, change your bio to that. It replaces your photo with the
spacer/transparent gif. Then the CSS adds your real photo as a background.
The gif is on top so any right click will just see the gif.