Hey @AK49_Logan_907, thanks for writing in!
As for centering things, it’s important to keep in mind that text alignment is different from element alignment. What that effectively means is that you could have the text of an element centered, but that element itself might be aligned to the left or a section (similar to the screenshot you’ve provided above). To ensure that an element is centered, there are a couple of things to be aware of / try out (each approach will depend on the situation and your personal taste for solving these layout considerations):
- The first thing you can try to horizontally center an item is to ensure that the left and right margin values are set to
auto. Using auto margins on the sides of your element will push it away from that side, so using auto on both sides will effectively “push” the element into the horizontal center.
- If you’re using the advanced control configuration, you can use the flexbox positioning on the Row’s Columns to place content inside that column. There’s a lot of information we cover on this here and here.
As for the header’s in X, the only things that can generally be changed are the colors to suit your design. However, the gray lines you’re referencing here are part of the Stack you’re using. If you want this to match the first example you sent, try switching to the Integrity stack under your Theme Options. This should swap out the header style to the version you want. Do keep in mind that you may need to make additional CSS tweaks to get things looking the way you want when switching Stacks.
Cheers!