I had the below php page created as a part of a larger web site I am developing. It is at the top of the page for all of the sites functions. I would really like to have buttons for switching between pages instead of just text. What needs to happen for me to be able to switch this from text links to a button style of my choice?
Sorry if this is a rediculously simple question. I'm completely new to php.
{if $selected != 'user_info'}
<a href="{$http_base}/edit_info.php">User Info</a>
{else}
User Info
{/if}
{if $selected != 'device_info'}
<a href="{$http_base}/user.php">Device Info</a>
{else}
Device Info
{/if}
{if $selected != 'messages'}
<a href="{$http_base}/user_messages.php">Messages</a>
{else}
Messages
{/if}
<a href="{$http_base}/forum.php">Forum</a>
<a href="{$http_base}/index.php?action=logout">Logout</a>
Thanks