Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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.

    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.

    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)