PDA

View Full Version : Please Help with About Me page!


BrandonH
Feb-26-2009, 06:19 PM
I have gone through every post I can find in regards to creating an "about me" page and have got the basic done. I am now having 2 problems. The first is my picture will not load on the page. It shows up when I am logged in, but will not in visitor view. Next I would like to change the font on the page. I have tried everything I can think of and still no luck. I am wanting to use a font called "blackjack" on this page...I used it on other pages without any problems. Could someone please help me before I just give up.

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

Thanks,

Brandon

BrandonH
Feb-27-2009, 07:48 AM
Please help me...I'm so close to finishing.

Allen
Feb-27-2009, 08:13 AM
I have gone through every post I can find in regards to creating an "about me" page and have got the basic done. I am now having 2 problems. The first is my picture will not load on the page. It shows up when I am logged in, but will not in visitor view. Next I would like to change the font on the page. I have tried everything I can think of and still no luck. I am wanting to use a font called "blackjack" on this page...I used it on other pages without any problems. Could someone please help me before I just give up.

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

Thanks,

Brandon
Add the closing } here in red.

/* turn off the cart link on the minifooter */
.cartlink_footer { display: none; }


Remove these closing }'s here in red. Thes are corrected in CSS box below
for the new gallery CSS.

.gallery_7462815 .myPhoto img {
border: 4px ridge #444; /* add border around photo */
}

}

.gallery_7462815 .myText {
}
text-align: justify; font-size:100%; font-family: blackjack;
color: #fff;
font-weight: normal;
text-align: justify;
padding: 0 30px 0 0;
}


In the description add the spacer in bold.

...
</div> <!-- closes myText div -->
<div class="spacer"></div>
</html>

Change the CSS for this gallery to this. That font is not available to most
viewers so added more choices.

/* about gallery */

.gallery_7462815 #albumDescription {
margin-top: 40px; /* gap from navbar at top */
background: #222; /* background of description box */
padding: 20px 40px 40px 40px; /* top right bottom left */
} /* spacing inside box from edges */

.gallery_7462815 .myPhoto {
float: left; /* allows the text to flow to the right */
padding: 0 30px 10px 0; /* top right bottom left */
} /* spacing of text around photo */

.gallery_7462815 .myPhoto img {
border: 4px ridge #444; /* add border around photo */
}

.gallery_7462815 .myText {
text-align: justify;
font-size:120%;
font-family: blackjack, Comic Sans MS, verdana;
color: #fff;
font-weight: normal;
text-align: justify;
padding: 0 30px 0 0;
}

/* things you can hide on page */
.gallery_7462815 #albumNav_top,
.gallery_7462815 #albumNav_bottom,
.notLoggedIn .gallery_7462815 .journal_entry, /* hides photos in gallery */
.notLoggedIn .gallery_7462815 #breadcrumb {display: none;}

/* end about gallery */

BrandonH
Feb-27-2009, 11:24 AM
Thank you...you just kept me from going crazy.