Scroll
Where to insert button codes
Forums
There are many tutorials online about creating buttons, which include the HTML code for the button and the style code. So where do you insert this button code in Drupal? For example, this HTML code:
<a href=”#” alt=”” title=”” class=”buttp”>Button Name</a>
And what should I do with the CSS code? Should I insert it into the theme's style or create a new stylesheet and link it somewhere?
The CSS code:
<style type="text/css"> .buttp { padding:10px 15px; margin: 5px; background: #003399; color: #fff; font-size: 0.9em; font-weight: bold; line-height: 1.3em; border: 1px dashed #fff; border-radius: 2px; text-shadow: -1px -1px #030; font-weight: normal; } </style>
I'm using the Zen theme and want to create buttons for the main menu. Help a beginner out. 
