Results 1 to 8 of 8

Thread: Fan Update help?

  1. #1
    Join Date
    Aug 2006
    Posts
    235
    Thanks
    30
    Thanked 2 Times in 2 Posts

    Default Fan Update help?

    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
    Last edited by ModernRevolutions; 01-17-2009 at 10:54 AM.

  2. #2
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    Add this to your css:
    Code:
    #comments p {
    display: inline;
    }
    or remove the <p> tags.

    Good luck!

  3. The Following User Says Thank You to Snookerman For This Useful Post:

    ModernRevolutions (02-24-2009)

  4. #3
    Join Date
    Aug 2006
    Posts
    235
    Thanks
    30
    Thanked 2 Times in 2 Posts

    Default

    Ok that worked for the most part however

    It looks like this
    and i want it to look like this.


    How would i code that?

  5. #4
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    Try floating the images to the left:
    Code:
    #comments img {
    float: left;
    }
    Some tweaking might be needed as well but start with this.

    Good luck!

  6. The Following User Says Thank You to Snookerman For This Useful Post:

    ModernRevolutions (02-24-2009)

  7. #5
    Join Date
    Aug 2006
    Posts
    235
    Thanks
    30
    Thanked 2 Times in 2 Posts

    Default

    Ok that worked but now the 2nd comment is in the other comments box thingy. Like this

  8. #6
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    You'll have to clear the float, try this:
    Code:
    #comments img {
    float: left;
    clear: left;
    }
    Good luck!

  9. The Following User Says Thank You to Snookerman For This Useful Post:

    ModernRevolutions (01-15-2009)

  10. #7
    Join Date
    Aug 2006
    Posts
    235
    Thanks
    30
    Thanked 2 Times in 2 Posts

    Default

    YAY!!! thanks they are perfect now

  11. #8
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    You're welcome, glad to help! You can go to your first post in this thread, click 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!

  12. The Following User Says Thank You to Snookerman For This Useful Post:

    ModernRevolutions (02-24-2009)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •