Space between LOGIN and LAST UPLOADS Space between LOGIN and LAST UPLOADS
 

News:

CPG Release 1.6.28
added submissions from {406man}
cleaned up a few PHP (8.4) deprecations
fixed PHP deprecation in calendar
removed security vulnerability
(please upgrade when possible)

Main Menu

Space between LOGIN and LAST UPLOADS

Started by photofreak, September 04, 2004, 11:16:26 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

photofreak

When you have a look at www.digipixz.com you see the the space between LOGIN and LAST UPLOADS is not the same as the other links.
Where can ik fix thas so it has the same space between?

Joachim Müller

when viewing the sourcecode of your page, it's quite obvious why this happens:

<!-- BEGIN login -->
                        <a href="login.php?referer=%2F">Login</a>
<!-- END login -->

                        <br />
                        <a href="thumbnails.php?album=lastup&cat=0">Last uploads</a><br><br>
                        <a href="thumbnails.php?album=lastcom&cat=0">Last comments</a><br><br>

                        <a href="thumbnails.php?album=topn&cat=0">Most viewed</a><br><br>
                        <a href="thumbnails.php?album=toprated&cat=0">Top rated</a><br><br>
                        <a href="thumbnails.php?album=favpics">My Favorites</a><br><br>
                        <a href="search.php">Search</a>
shows you have one line-break after login, but two of them after all other  menu items.

Joachim

photofreak


Joachim Müller

this is the html output of your page. Modify theme.php to add another <br /> after the login link

Joachim