Topic summary
A user is experiencing an alignment issue where elements are not starting on the same line, as shown in their screenshot.
Solution Provided:
A CSS fix was offered to resolve the alignment problem:
- Navigate to: Online Store → Themes → Edit code
- Locate and open the CSS file (custom CSS or
base.css) - Add the following code at the end:
body .trustbadge-content {
justify-content: flex-start !important;
}
This targets the .trustbadge-content element and forces left alignment using flexbox properties. The solution includes step-by-step instructions with a supporting screenshot showing where to insert the code.
Hello! @labana Please follow these steps to add this CSS code:
- Go to your Online Store
- Click on “Themes”
- Select “Edit code”
- Open your CSS file. If you have a custom CSS file, open that instead.
- If you can’t find your custom CSS file, open “base.css”
- Add the following code at the end of the file.
body .trustbadge-content {
justify-content: flex-start !important;
}
If you need further assistance, please let me know. If you found my help useful, consider liking this message and marking it as the Accepted Solution.
Best regards
K.K
1 Like

