Hello how do i move image to the bottom of column? Origin theme Nobeltitanium.com
Thank you ![]()
A user needs help moving images to the bottom of multicolumn sections on their Shopify store (Nobelium theme). The columns appear on product pages when clicking star icons.
Solution Provided:
Add CSS code to flip the column layout using flexbox:
.multicolumn-card.content-container {
display: flex;
flex-direction: column-reverse;
}
Implementation Methods:
main.css (or base.css, theme.css, style.css) in the theme’s Asset folderKey Advice:
The discussion reached a resolution with working code provided by multiple contributors.
Hello how do i move image to the bottom of column? Origin theme Nobeltitanium.com
Thank you ![]()
Hi @needelp
Do you mean like this?
If it is check this one.
From you Admin page, go to Online Store > Themes
Select the theme you want to edit
Under the Asset folder, open the main.css(base.css, style.css or theme.css)
Then place the code below at the very bottom of the file.
.multicolumn-card.content-container {
display: flex;
flex-direction: column-reverse;
}
And Save.
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
@needelp do you have an example of a multicolumn section on your site?
@needelp you could add the following code to the custom CSS of the section:
.multicolumn-card.content-container{
display: flex!important;
flex-direction: column-reverse!important;
padding-bottom: 2.5em!important;
}
Please note that changes to CSS can also apply to other sections. Furthermore, try not to add custom CSS directly in the CSS files. Use the custom CSS feature of each section. This keeps your Theme clear for updates.
@Sangeetanahar has mentioned this before. I just added the padding to the bottom.