Not signed in (Sign In)

Vanilla 1.1.10 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthormemphish
    • CommentTimeOct 22nd 2005 edited
     
    I want to say first off that this is a great piece of software. The integration into my already existing CSS design was incredibly painless. I am so glad I finally found Plogger. One question I had was how to remove the RSS button, and divider. I don't plan on having a RSS feed and would like the gallery to look as clean as possible. What do I need to modify to remove this? Thanks again!

    Also, is there anyway to remove the date from the gallery?
    •  
      CommentAuthormike
    • CommentTimeOct 22nd 2005
     
    The RSS link: Line 697 of gallery.php
    <td style="text-align: right; white-space: nowrap;">'.$rss_tag.'</td>

    You can change that to
    <td style="text-align: right; white-space: nowrap;">&nbsp;</td>

    The date is on line 192 of gallery.php
    <h2 class="date">'.date($config["date_format"],$date_taken).'</h2>

    You can just delete that.

    Hope that answers your question. Like I said in another thread, our new theme system is going to make this a breeze to do.
    • CommentAuthormemphish
    • CommentTimeOct 23rd 2005
     
    Excellent! Thanks, and I look forward to the new system.
    • CommentAuthorpeanut
    • CommentTimeOct 30th 2005
     
    I changed line 697 to get rid of the RSS link ... but the grey dividers are still there. Any ideas on how to get rid of them?

    Thanks
    •  
      CommentAuthormike
    • CommentTimeOct 30th 2005
     
    Edit gallery.css, there are two elements #breadcrumbs and #pagination.

    Change/remove the CSS to eliminate the top and bottom border.