PDA

View Full Version : EZ html question


dogwood
Apr-17-2007, 08:14 PM
This is super easy but I can't figure it out. Any help would be greatly appreciated so the text isn't all crammed against the left of the photo in this gallery:

http://petespringer.smugmug.com/gallery/2712938

Here's my html for that first caption:

<html><b>BOUTIQUE/CATALOG SHOOTS</b><br><br>

$200 (paid in advance) includes:<br>
<ul>
<li> up to four hours shooting time on location<br>
<li>professional studio lighting<br>
<li> private online proof gallery<br>
<li> custom CD of entire shoot in print and web res<br>
<li> additional time available for $50/hour</li><br>

</ul>
More info? Please email me

<br><br>


</html>

DavidTO
Apr-17-2007, 08:46 PM
I assume you're talking about Journal view?

I have the answer on my site somewhere, but I forget what it is. I'm going to look...

EDIT: Try this in your CSS:



.journal_entry .caption {_float: left; display: table;}

richW
Apr-17-2007, 08:50 PM
Pete, I know this is not what you are looking for. Take a look at this until I can come up with the right answer for you. I'm assuming you are to force viewing style to "Journal"?

.gallery_2712938 #journal .photo.left {
clear: right;
float: right;
margin: 0 0 10px 10px;}

.gallery_2712938 .pageNav {display: none;}

edit: David's code looks good.....

DavidTO
Apr-17-2007, 08:52 PM
Pete, I know this is not what you are looking for. Take a look at this until I can come up with the right answer for you.

I already came up with the right answer! :D

dogwood
Apr-17-2007, 09:22 PM
I assume you're talking about Journal view?

I have the answer on my site somewhere, but I forget what it is. I'm going to look...

EDIT: Try this in your CSS:



.journal_entry .caption {_float: left; display: table;}

Beautiful! That worked beautifully. Thank you David. :thumb

Guess that was actually an EZ CSS question, not html.

DavidTO
Apr-17-2007, 09:24 PM
Beautiful! That worked beautifully. Thank you David. :thumb

Guess that was actually an EZ CSS question, not html.


It's an easy question, the answer is actually not. I didn't come up with that answer, I got help. And it's not beginner CSS. It's one of those things that you just know after a while, I guess.