Not signed in (Sign In)

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

    • CommentAuthorckessler
    • CommentTimeJul 16th 2006 edited
     
    What would I edit in gallery.css to remove the lines above and beneath "Collections>>..." and the RSS feed logo?

    Thanks,

    Cyndi
    • CommentAuthorckessler
    • CommentTimeJul 19th 2006
     
    Problem solved, a fellow Plogger user sent me the following instructions:

    The lines are actually borders set in the css file for the breadcrumbs and footer (aka pagination) section. Here is the section from my css in which you can see I've commented out the sections that add the border-top and border-bottom for the pagination section and I've commented everything having to do with borders in the breadcrumbs section. Making the same modifications to your css file (gallery.css) should achieve the results you're after!!

    The rss link is created in the gallery.php file way down in the the_gallery() method. I've copied the relevant section from my gallery.php file so you can see the changes I made. The changes are indicated by // BEC comments. I basically just prevented it from writing out the rss tag line by commenting this line: <!--<td style="text-align: right; white-space: nowrap;">'.$rss_tag.'</td>-->


    ----------- CSS SNIPPET ------------
    #pagination {
    padding: 2px;
    margin: 0;
    clear: both;
    text-align: left;
    /* BEC: removed borders from "footer" section */
    /*
    border-top: 1px solid #CDCDCD;
    border-bottom: 1px solid #CDCDCD;
    */
    }
    #breadcrumbs {
    margin: 0;
    padding: 2px;

    /* BEC: removed borders from breadcrumbs */
    /*border-top: 1px solid #CDCDCD;
    border-bottom: 1px solid #CDCDCD;
    border-style: solid;
    border-width: 1px;
    border-color: #000000;/*

    background-color: #FFC; */
    }
    ----------- END CSS SNIPPET ------------

    ----------- GALLERY.PHP SNIPPET ------------
    if ($level != "slideshow")
    $rss_tag = '<a href="'.$rss_link.'"><img src="' . $config["baseurl"] . 'graphics/rss.gif" title="'.$rss_tooltip.'" alt="RSS 2.0 Feed" style="margin:0; padding:0; display:inline" /></a>';
    else
    $ss_cap_tag = '<td><span id="picture_caption">&nbsp;</span></td>';
    // BEC removed the rss link to the album image stream AND the pagination
    $output .= '
    </div>
    <div id="pagination">
    <table style="width: 100%;">
    <tr>'.$ss_tag.$ss_cap_tag.'
    <td>'.generate_pagination($p_url, $page, $num_items, $config["thumb_num"]).'</td>
    <!--<td style="text-align: right; white-space: nowrap;">'.$rss_tag.'</td>-->
    </tr>
    </table>
    </div>';
    $end = microtime();
    $t2 = (getmicrotime($end) - getmicrotime($start));
    // BEC removed the linkback and added it below with the other linkback icons
    // $output .= '<p id="link-back"><a href="http://www.plogger.org/">Powered by Plogger!</a></p></div></form>';
    $output .= '</div></form>';
    ----------- END GALLERY.PHP SNIPPET ------------
    _____________________________________________