How To Add Css To The Helix Ultimate Template? I am Using SP Page Builder 5 Beta - Question | JoomShaper

How To Add Css To The Helix Ultimate Template? I am Using SP Page Builder 5 Beta

M

Maria

Template 10 months ago

Hi fistly i would like to say that Page Builder is super and has help me do so many things love it!

On my new site I am using and EasyBlog and need to bring the EasyBlog up close to the Helix menu?

See the Photos bellowto see how it looks now.

Mark from Stackideas wrote to me to change the padding of the Helix Ultimate Template's css file and add the following.

body #sp-main-body { padding-top: 20px; }

I am using SP Page Builder 5 Beta and cant find where to put the css code in.

Could you please let me know where to add the css code in?

Thanks

0
3 Answers
Pavel
Pavel
Accepted Answer
10 months ago #118330

Hi. Create custom.css file in /templates/shaper_helixultimate/css/ and add all your custom code to this file. Do not ignore the reading of Helix documentation. It is written about it there.

And try to use simpler selectors, if possible.

So it will be enough (not need body before).

#sp-main-body { 
    padding-top: 20px; 
    }

The more complex selector, the slower your site works.


Also you can set it there instead of using the code

0
M
Maria
Accepted Answer
10 months ago #118343

Thank you your great :)

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 10 months ago #118357

@Maria, as @Pavel said , many useful tips you can find here >> https://www.joomshaper.com/documentation/helix-framework/helix-ultimate-2/customization-tips

In SPPB 5.x each page have "Page CSS" field where you can use Custom CSS for that page only.

Page Settings > Page CSS

info_1199_2023.jpg


@Pavel - thanks again for helping words.

0