CSS For Helix - Question | JoomShaper

CSS For Helix

JL

Joe Lockhart

Helix Framework 1 year ago

Good day all.

I have an old Joomla 3 website

https://rollerball.ca/

As you can see the old site there is nice CSS in the righ hand colum.

The new Joomla 4 website Uses Helix.

https://rollerball.ca/mm4/

Where do I add the CSS in Helix to make the left colum look like the right colum of the old site?

Thank you!

0
2 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #107650

Hi Joe,

the general tip for Custom CSS is: https://www.joomshaper.com/documentation/helix-framework/helix-ultimate-2/custom-code-css-js-meta

using custom CSS you have to make of those changes, below is FREE example code:

#sp-main-body {background-color: transparent;}
#sp-component {background: #A4A6A5;border-radius: 10px;}
#sp-left .sp-module, #sp-right .sp-module {
  background: #E3E3E3;
  border-radius: 10px; padding: 10px;}
#sp-header, #sp-header.header-sticky {
  border-radius: 10px;}

it's typical customization job, beyond support.

0
JL
Joe Lockhart
Accepted Answer
1 year ago #110803

Paul, I hope you can help me here.

0