When I look at your journal with the css inspector, it looks like what you need is to change the left margin of the div called "primary", which is the main entry column. The numbers there are calculated by the wizard, but the current value is
(at)media only screen and (min-width: 40em) .two-columns-right #primary { margin-left: 20%;
and it looks like if you override 20% in the CSS with a larger number it should move the layout to the right. I'm not 100% sure that would work, but that's where I'd start. You can probably use the CSS override box in the wizard, but if not you could create a new theme layer in the advanced customization area and start by copying the raw source code of the theme layer you current use from the Public Layers pages and pasting it into the new layer, then appending the command
set custom_css = " ";
at the end (with all the custom css styles in the middle).
no subject
Date: 2022-09-14 02:25 pm (UTC)and it looks like if you override 20% in the CSS with a larger number it should move the layout to the right. I'm not 100% sure that would work, but that's where I'd start. You can probably use the CSS override box in the wizard, but if not you could create a new theme layer in the advanced customization area and start by copying the raw source code of the theme layer you current use from the Public Layers pages and pasting it into the new layer, then appending the command
at the end (with all the custom css styles in the middle).