PDA

View Full Version : Blog Question


foto41
Jan-25-2009, 07:12 PM
Here is my site - http://www.foto41.com/gallery/4297463

My blog is incorporated into my site. I would like to make the viewable space larger so you do not have to use the "side-to-side" scroll bar to view my Blog. Anyone know if this is possible?
Many Thanks.
Barry

jfriend
Jan-25-2009, 07:16 PM
Here is my site - http://www.foto41.com/gallery/4297463

My blog is incorporated into my site. I would like to make the viewable space larger so you do not have to use the "side-to-side" scroll bar to view my Blog. Anyone know if this is possible?
Many Thanks.
Barry
You've insert this code into the gallery description to make this work:

<iframe src="http://foto41.blogspot.com/" style=" border-width:0" width="746" frameborder="0" height="650" ></iframe>


Make the width in that line as large as you think is good.

denisegoldberg
Jan-25-2009, 07:21 PM
Here is my site - http://www.foto41.com/gallery/4297463

My blog is incorporated into my site. I would like to make the viewable space larger so you do not have to use the "side-to-side" scroll bar to view my Blog. Anyone know if this is possible?

Have you considered changing your blog to match your smug site instead of embedding it? (definitely no side-to-side scroll bar here...) Take a look at my site and blog (also hosted at blogger) to see what I mean.

See this thread for details on how to match the two - http://www.dgrin.com/showthread.php?t=101262.

--- Denise

foto41
Jan-26-2009, 11:05 AM
You've insert this code into the gallery description to make this work:

<iframe src="http://foto41.blogspot.com/" style=" border-width:0" width="746" frameborder="0" height="650" ></iframe>

Make the width in that line as large as you think is good.

That works! But when I change the width, the frame offsets towards to right instead of widening equally on both sides. Why? It's just aesthetics, but still.

Thanks for the great help though!

jfriend
Jan-26-2009, 12:14 PM
That works! But when I change the width, the frame offsets towards to right instead of widening equally on both sides. Why? It's just aesthetics, but still.

Thanks for the great help though!

That's because you made it wider than it's container so it can't center in the container. Add this CSS to center it:

.gallery_4297463 #journal {width:975px;}
.gallery_4297463 #albumDescription {text-align:center;}

foto41
Jan-26-2009, 12:46 PM
Here is how I added that CSS, no change it the way the Blog is centered. Did I do something wrong?

/* html only page for gallery 4297463 */
.gallery_4297463 .nophotos {
display: none;
}
.gallery_4297463 .pageNav {
display: none;

.gallery_4297463 #journal {width:975px;}
.gallery_4297463 #albumDescription {text-align:center;}
}

jfriend
Jan-26-2009, 01:14 PM
Here is how I added that CSS, no change it the way the Blog is centered. Did I do something wrong?

/* html only page for gallery 4297463 */
.gallery_4297463 .nophotos {
display: none;
}
.gallery_4297463 .pageNav {
display: none;

.gallery_4297463 #journal {width:975px;}
.gallery_4297463 #albumDescription {text-align:center;}
}

You pasted it in the middle of the ".gallery_4297463 .pageNav" CSS rule so it isn't working.

foto41
Jan-26-2009, 01:59 PM
Is there a way to remove this:

foto41 (http://www.foto41.com/) > MyStuff (http://www.foto41.com/MyStuff) > Web Items (http://www.foto41.com/MyStuff/458677) > Blog!

from above my blog?

Also, is there a way to change the color of the "up-n-down scroll bar that sites along side the blog?

I REALLY appreciate the help!

jfriend
Jan-26-2009, 02:06 PM
Is there a way to remove this:

foto41 (http://www.foto41.com/) > MyStuff (http://www.foto41.com/MyStuff) > Web Items (http://www.foto41.com/MyStuff/458677) > Blog!

from above my blog?

Also, is there a way to change the color of the "up-n-down scroll bar that sites along side the blog?

I REALLY appreciate the help!

Use this CSS to hide the breadcrumb in that gallery:

.gallery_4297463 #breadCrumbTrail {display:none;}

I don't know how to change scrollbar colors in all browsers.