Dominee Posted July 17, 2011 Share Posted July 17, 2011 Hi, I made a toplink for my website. My question is: How to make my text in the toplink Arial and 12 px Here is my code. <?php session_start(); // Must start session first thing $toplinks = ""; if (isset($_SESSION['id'])) { // Put stored session variables into local php variable $userid = $_SESSION['id']; $username = $_SESSION['username']; $toplinks = '<a href="member_profile.php?id=' . $userid . '">Welkom ' . $username . '</a> • <a href="cart.php">Winkelwagen</a> • <a href="logout.php">Log uit</a>'; } else { $toplinks = '<a href="join_form.php">Registreren</a> • <a href="login.php">Login</a>'; } ?> Thanks, Mitch Quote Link to comment https://forums.phpfreaks.com/topic/242189-toplink-help/ Share on other sites More sharing options...
wildteen88 Posted July 17, 2011 Share Posted July 17, 2011 Learn to use Cascading Style Sheets (CSS) Quote Link to comment https://forums.phpfreaks.com/topic/242189-toplink-help/#findComment-1243725 Share on other sites More sharing options...
srikanth03565 Posted July 17, 2011 Share Posted July 17, 2011 This is completely related to css you can see any site and get an idea from that.Use tools like firebug and check the css and use it. Quote Link to comment https://forums.phpfreaks.com/topic/242189-toplink-help/#findComment-1243728 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.