Title: camelman's Replies | WordPress.org

---

# camelman

  [  ](https://wordpress.org/support/users/camelman/)

 *   [Profile](https://wordpress.org/support/users/camelman/)
 *   [Topics Started](https://wordpress.org/support/users/camelman/topics/)
 *   [Replies Created](https://wordpress.org/support/users/camelman/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/camelman/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/camelman/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/camelman/engagements/)
 *   [Favorites](https://wordpress.org/support/users/camelman/favorites/)

 Search replies:

## Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)

 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [wp_nav_menu, adding a div around the secondary ul](https://wordpress.org/support/topic/wp_nav_menu-adding-a-div-around-the-secondary-ul/)
 *  [camelman](https://wordpress.org/support/users/camelman/)
 * (@camelman)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/wp_nav_menu-adding-a-div-around-the-secondary-ul/#post-2590624)
 * Use a custom walker class (a nice tutorial here: [http://wpquicktips.wordpress.com/2010/07/09/create-a-custom-menu-by-creating-your-own-walker/](http://wpquicktips.wordpress.com/2010/07/09/create-a-custom-menu-by-creating-your-own-walker/))
   and change the output any way you like 🙂
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Allow a post to only be submitted to one category…](https://wordpress.org/support/topic/allow-a-post-to-only-be-submitted-to-one-category/)
 *  [camelman](https://wordpress.org/support/users/camelman/)
 * (@camelman)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/allow-a-post-to-only-be-submitted-to-one-category/#post-2593555)
 * something like this?
    [http://wordpress.org/extend/plugins/category-radio-buttons/](http://wordpress.org/extend/plugins/category-radio-buttons/)
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [How to inject /insert code into header using a function](https://wordpress.org/support/topic/how-to-inject-insert-code-into-header-using-a-function/)
 *  [camelman](https://wordpress.org/support/users/camelman/)
 * (@camelman)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/how-to-inject-insert-code-into-header-using-a-function/#post-2592424)
 * i use this function:
 *     ```
       <?php
       function addfavicon() {
       	if (is_single() || is_page()) { /* If Post or Page */
       		 echo '<link rel="shortcut icon" href="' .bloginfo('stylesheet_directory'). 'images/favicon.ico">';
       	}
       }
       add_action('wp_head', 'addfavicon', 1);
       ?>
       ```
   
 * dose this helps?
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [Change font size of specific page in nav menu](https://wordpress.org/support/topic/change-font-size-of-specific-page-in-nav-menu/)
 *  [camelman](https://wordpress.org/support/users/camelman/)
 * (@camelman)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/change-font-size-of-specific-page-in-nav-menu/#post-2592985)
 * font size:
    easiest way is to create a custom template ([http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates](http://codex.wordpress.org/Pages#Creating_Your_Own_Page_Templates))
   for that page, and run you’r own code. in that code wrap a div around all the
   content with a custom class and then change accordingly in your style.css file.
 * menu:
    use a custom walker class – IE: extends the walker class (a nice tutorial
   here: [http://www.kriesi.at/archives/improve-your-wordpress-navigation-menu-output](http://www.kriesi.at/archives/improve-your-wordpress-navigation-menu-output)).
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [prompt the user upon plugin deactivation](https://wordpress.org/support/topic/prompt-the-user-upon-plugin-deactivation/)
 *  Thread Starter [camelman](https://wordpress.org/support/users/camelman/)
 * (@camelman)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/prompt-the-user-upon-plugin-deactivation/#post-2583916)
 * none can help? 🙁

Viewing 5 replies - 1 through 5 (of 5 total)