Hi @heywatchit!
When I inspect your site, I see an style attribute on your page’s main body tags. Have you updated your theme or installed any new plugins recently?
A good first step will be to disable all of the theme’s plugins, to see if that removes the centered text. If it does, you know a plugin is causing the change, and you can start turning them back on one at a time to figure out which one.
If disabling the plugins does not do the trick, you might want to check in on the support forum for your theme, which looks like it is Catch Responsive.
The theme has a support forum here: https://www.ads-software.com/support/theme/catch-responsive
The theme author/other users may be able to help you track down the issue if it is related to the theme itself.
If all else fails, you could try using some CSS to counter the effect:
/* counteract centered text */
body {
text-align: initial !important;
}
That should re-align things, but I’d only recommend it as a last resort, as that kind of CSS style can get in the way later on. Definitely try the plugin approach and your theme’s support forum first ??