Sure, that can be done by creating a custom menu. We have a tutorial here on creating custom menus that I think you’ll find very useful.
To add a 2nd-tier menu item, place the new menu item after an existing menu item, and then click-and-drag it to the right. I hope that makes sense, don’t hesitate to ask any other questions 🙂
Aaaaah. The dragging the subcategory to the right that had me stumped.
next question, is there a way to make the background color on these subpages black instead of white? and then of course reverse the color of the text too?
On just the subpages? This would require some additional PHP and is outside the scope of what I can offer as support.
However, the following CSS can be used to make the background dark and text light for all of your Pages:
.singular-page .entry {
background: #222;
}
.singular-page .entry-content,
.singular-page .entry-content a {
color: white;
}
You can copy and paste that code into the “Custom CSS” section in the Customizer (Appearance > Customize). Once added there, it should take affect right away.
Worked like a charm man! Thanks.