Delete left Logo section in Footer & center "2022 C by Cotiere"

How do I delete the left Logo section (“Cotiere”) in Footer & center the “2022 C by Cotiere”.

This should be on the desktop and mobile version!

URL: https://www.cotiereofficial.com/

PW: test1234

Theme: Baseline

1 Like

i will need a password to enter your store so as to tee you what to do

@marcelp

oh sorry for this issue can you try this code,

  1. Go to Online Store->Theme->Edit code
  2. Asset->/theme.min.css ->paste below code at the bottom of the file.
#shopify-section-footer .text-scheme-text:first-child {
    display: none;
}

#shopify-section-footer .text-scheme-text {
    grid-column: span 4/span 4;
}

#shopify-section-footer .border-t-grid.border-grid-color + .border-t-grid.border-grid-color {
    display: none;
}

.section-x-padding.py-theme.lg\:flex.lg\:flex-wrap.lg\:items-center.lg\:justify-between {}

Hi @marcelp ,

Go to Assets > theme.min.css and paste this at the bottom of the file:

footer .text-scheme-text:first-child,
footer .mb-4.md\:mb-0.md\:w-auto.lg\:flex-1 {
    display: none !important;
}
@media (min-width: 1024px) {
	footer .text-scheme-text {
		grid-column: span 4/span 4 !important;
	}
}
footer .mb-4.lg\:mb-0.space-y-2.text-sm.lg\:flex-1 {
	text-align: center;
}

Hope it helps!

1 Like