Log in

View Full Version : Resolved Fan Update help?



ModernRevolutions
01-14-2009, 02:41 AM
Ok I have Fan Update which is a blogging system. However, I don't know how to change what the comments look like. I want them to look like this:
http://www.pastelsmash.com/index.php?id=23#comments (with the "gravatar" on the left and then the body to the right of the "gravatar")

here is a link to my site. http://www.modernrevolutions.vivid-avenue.net

Snookerman
01-14-2009, 09:27 AM
Add this to your css:

#comments p {
display: inline;
}
or remove the <p> tags.

Good luck!

ModernRevolutions
01-14-2009, 11:44 PM
Ok that worked for the most part however

It looks like this (http://i40.tinypic.com/1rvwgm.png)
and i want it to look like this (http://i40.tinypic.com/2gui9z8.png).


How would i code that?

Snookerman
01-15-2009, 06:40 AM
Try floating the images to the left:

#comments img {
float: left;
}
Some tweaking might be needed as well but start with this.

Good luck!

ModernRevolutions
01-15-2009, 07:00 AM
Ok that worked but now the 2nd comment is in the other comments box thingy. Like this (http://i43.tinypic.com/110voqs.jpg)

Snookerman
01-15-2009, 11:54 AM
You'll have to clear the float, try this:

#comments img {
float: left;
clear: left;
}

Good luck!

ModernRevolutions
01-15-2009, 11:41 PM
YAY!!! thanks they are perfect now :)

Snookerman
01-16-2009, 07:26 AM
You're welcome, glad to help! You can go to your first post in this thread, click http://www.dynamicdrive.com/forums/images/buttons/edit.gif then click Go Advanced and add the Resolved prefix to the thread title. This will let other users know the problem has been solved.

Good luck with your site!