Helix Template Not Reacting To Changes - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Helix Template Not Reacting To Changes

A

Arthur

Template 2 years ago

Since the very beginning I have tons and tons of issues with the Helix Ultimate template. For example: now I have a need to setup articles background (I mean standard J4 articles). I have found some suggestions to place the CSS in the template. I used the following code in the CSS section:

Existing code:

sp-header {background: #1F2947;}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {background: #1F2947;}

sp-page-builder { background: #ccddff;}

sp-header {background: #1F2947;}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {background: #1F2947;}

sp-page-builder { background: #ccddff;}

Added code .view-article .article-details {background: rgba(204, 221, 255, 1)

but I see no change on the front end.

I also noticed when I change the colors for certain other objects in the template), even after refreshing and clearing the cache I still see no changes updated on the front page. Using: J4.3 , PHP v8.1 , Firefox v112.0.1

0
3 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 2 years ago #115332

Hi

Thanks for contacting us. Could you please give me your site URL and also screenshot of your issue?

-Regards.

0
A
Arthur
Accepted Answer
2 years ago #116308

Well due to the other issue (bug in SPPB) now my site is down and I am extremely frustrated. I do not what kind of screenshot you expect. The issue is serious but very simple.

I set page background to i.e green, but when I open the pages it is white everywhere. That;s all there is to it.

0
Pavel
Pavel
Accepted Answer
2 years ago #116363

For example: now I have a need to setup articles background (I mean standard J4 articles).

Hi Arthur. There are no problems with Helix (if we are talking about raw Helix Ultimate, but not about commercial templates based on Helix). I have been using Helix framework for more than 5 years without any critical problems. There are small minor disadvantages that are easy to fix. But there are similar things in any software.

As for the use of custom CSS coding, in this aspect, Helix works excellent and is the most convenient of all existing in the market.

Problems can be local in nature, which depend on your server, your skills and your understanding of how software works.

For the background of articles pages, use the following code

.view-article {
    background-color: red;
}

For the background of articles content part, use the following code

.view-article .article-details {
    background-color: white;
}

Add it to the custom.css FILE, but not to the templates Custom CSS field or somewhere else.

If you think that your code is correct but does not work, you should use browser dev tools to determine the cause. Or write a code directly in dev tools to check its work capacity.

Tip

0