So i'm working on my image hosting website. However I need some help centering my menu.
I know a lot of you work with imgshot so you may be able to help me.
I went into
inc/menu.php as well as inc/user_menu.php and tried adding <center> tags.
But it did not center it.
Here's what is in the files.
inc/menu.php
and here is inc/user_menu.php
So obviously
inc/menu.php is for the top header and inc/user_menu.php is for the bottom one.
I tried adding center tags into both files. It did not work.
Can someone who's familiar with this help me out?
Thank you!
I know a lot of you work with imgshot so you may be able to help me.
I went into
inc/menu.php as well as inc/user_menu.php and tried adding <center> tags.
But it did not center it.
Here's what is in the files.
inc/menu.php
Code:
<div id="menu">
<div id="menu_links">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="page-contact.html">Contact</a></li>
<li><a href="page-DMCA.html">DMCA</a></li>
<?php if(isset($_SESSION['user_name'])) {
?>
<li><a href="myaccount.php">My Account</a></li>
<li><a href="logout.php">Log out</a></li>
<?php
} else {
?>
<li><a href="register.php">Register</a></li>
<li><a href="login.php">Login</a></li>
<?php } ?>
<?php
if(isset($_SESSION['user_level']) && $_SESSION['user_level'] == 5){
echo "<li><a href='admin'>Admin Panel</a></li>";
}
?>
</ul>
</div>
</div>
and here is inc/user_menu.php
Code:
<div id="content_menu">
<div id="menu_links">
<ul>
<li><a href="myaccount.php"><img border="0" style="position:absolute; margin-top:-5px;" src="css/img/home.png" alt="H" /><span class="invisible">Home</span></a></li>
<li><a href="mysettings.php">My Settings</a></li>
<li><a href="my_images.php">Images</a></li>
<li><a href="galleries.php">Galleries</a></li>
<li><a href="support.php">Support</a></li>
</ul>
</div>
</div>
So obviously
inc/menu.php is for the top header and inc/user_menu.php is for the bottom one.
I tried adding center tags into both files. It did not work.
Can someone who's familiar with this help me out?
Thank you!
