Title: visualrhythm's Replies | WordPress.org

---

# visualrhythm

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Permalinks not able to be edited on Custom Post Types](https://wordpress.org/support/topic/permalinks-not-able-to-be-edited-on-custom-post-types/)
 *  [visualrhythm](https://wordpress.org/support/users/visualrhythm/)
 * (@visualrhythm)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/permalinks-not-able-to-be-edited-on-custom-post-types/#post-3021845)
 * I am having this same issue. I am using the plugin Custom Post Type UI and trying
   to debug.
 * My guess is that it is a WP version update issue or there is a setting in the
   Admin that somehow blocking editing these post types.
 * If anyone has a trick, please speak up.
 * Meanwhile, I’ll be sure to update if I find a solution.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Code for Navigation Link Titles](https://wordpress.org/support/topic/code-for-navigation-link-titles/)
 *  [visualrhythm](https://wordpress.org/support/users/visualrhythm/)
 * (@visualrhythm)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/code-for-navigation-link-titles/#post-3036515)
 * Hey there,
 * Editing those lines of CSS will not change the background color of your navigation
   menu. It appears that the lines of code you changed are lower on the style.css
   file than the line I suggested.
 * First, try to scroll up and look higher in the CSS code for :
    “nav ul, nav ol,#
   mainmenu, .part-items” it’s listed under: /* Reset & General Styling */
 * If you still cannot find that line of code, simply write an entirely new line
   of code in your CSS file that looks like this:
    `#mainmenu { background: #999;}`
 * In either case, #mainmenu is the target ID that you need to update in order to
   change the background color.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Code for Navigation Link Titles](https://wordpress.org/support/topic/code-for-navigation-link-titles/)
 *  [visualrhythm](https://wordpress.org/support/users/visualrhythm/)
 * (@visualrhythm)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/code-for-navigation-link-titles/#post-3036505)
 * Hey thesiegesound,
 * The code you are looking for is in your style.css file, this is where you add
   the background color.
 * On line 62 of your style.css file add a line of code like this:
    `background:#
   999;`
 * The final code should will look like this :
 *     ```
       nav ul, nav ol, #mainmenu, .part-items {
       list-style: none;
       list-style-image: none;
       margin: 0;
       padding: 0;
       background: #999; }
       ```
   
 * Let me know if this helps! Good luck!

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