I have the following navigation menu, My question is how would I do this in WordPress (code wise) due to each nav item having a different class. This navigation is going to be placed in front-page.php.
Code:
<div id="nav">
<div class="grid_4_home hoverable">
<a href="index.html"><h3>Home <span class="lucida">»</span></h3></a>
</div>
<div class="grid_4 hoverable">
<a href="expertise.html"><h3>My Expertise <span class="lucida">»</span></h3></a>
</div>
<div class="grid_4_about hoverable">
<a href="about.html"><h3>About Us <span class="lucida">»</span></h3></a>
</div>
<div class="grid_4 hoverable">
<a href="testimonials.html"><h3>Testimonials <span class="lucida">»</span></h3></a>
</div>
<div class="grid_4 hoverable">
<a href="reports.html"><h3>Case Reports <span class="lucida">»</span></h3></a>
</div>
<div class="grid_4_last hoverable">
<a href="contact.html"><h3>Contact Us <span class="lucida">»</span></h3></a>
</div>
</div> <!-- end of nav -->
add your code straight into front-page.php file located in your theme folder. do it either with php
echoor close php with?>then insert your html and then reopen php with<?phpthen edit style.css and put in it any additional css code you might need for your classes..