How to style a custom menu in wordpress?
-
Hi guys ??
I am currently converting a static HTML and CSS site that i made into wordpress!
Or at least thats what i am trying to do ??I have followed Lynda.com — > chris coyers tutorial on how to implement custom menu!
I have added this function into the function.php
if (function_exists('register_nav_menus')) { register_nav_menus( array( 'main_nav' => 'Main Navigation Menu' ) ); }
and to my menu i have added this one :
<?php wp_nav_menu(array('menu'=> 'Main Menu Nav')); ?>
I have also included it into the backend of my wordpress install.
My problem is that i dont know how to style my menu the way it looks like on my static HTML and CSS site! (www.neliuz.com).
Since inside my HTML i use li class=”riis” and use jQuery to add the effect i want!
So wordpress does not know about my HTML when i replace it with custom menu!
Is there anyone that have done something simular or know were to start than i would appreciate it ALOT!
Thanks in advanced ??
- The topic ‘How to style a custom menu in wordpress?’ is closed to new replies.