Updating a Joomla 3.10.11 website to Astroid/Template 2.6.0+ with Child template ability #241
-
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi @Chacapamac
Yes, you have to update background-image url because css was change from
I think you have to edit your custom.scss manually. I don't like using code to update the template provider scss file. Because a lot of exceptions can arise when meddling in other people's code As you know when Joomla update from Joomla 4.1 to 4.2. There are many extensions are not compatible with it and they have to update to compatible with latest version. Astroid is same in this situation, template provider have to upgrade their code to compatible. Thanks & Best Regards, |
Beta Was this translation helpful? Give feedback.
-
Thank You for the info, I undersyand. Now I will test to update the Template Zero to see if I have pronlems. |
Beta Was this translation helpful? Give feedback.
Hi @Chacapamac
Yes, you have to update background-image url because css was change from
templates
tomedia
. You should prepend../../
to url to make sure it works.Solution change
background: url(../../../images/x-construction/logos-site/vertical-background-takuma-typo-81-572.png);
tobackground: url(../../../../../images/x-construction/logos-site/vertical-background-takuma-typo-81-572.png);