-
AuthorPosts
-
palos Friend
palos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
March 25, 2015 at 4:30 pm #205013Hmm, I feel noob now.
Just trying to style my JA Nex based site what I installed a year ago and surprisingly custom.css has no any effect.It seems to be having fresh things:
Joomla 3.4.1, T3 Framework 2.4.6, ja_nex_t3 template 1.1.1. Did I missed something?
Most of the rows I try to override are placed in /public_html/templates/ja_nex_t3/css/themes/color folder/k2.css
My custom.css file is living in /public_html/templates/ja_nex_t3/css but also placed in /public_html/templates/ja_nex_t3/css/themes/color folder/ just to see how it is working
Resulted nothing. :((It is not T3V2 or T3V3 where we had to edit the original css files….
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
March 26, 2015 at 4:00 am #564617Hi Palosutca,
If you’re using JA Nex with T3 framework (not old T3v2 framework), you can override css file for each theme via local folder. Please check out this documentation for more info: http://www.t3-framework.org/documentation/new-features#isolate-template
1 user says Thank You to Saguaros for this useful post
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
March 26, 2015 at 9:06 am #564663Thanks Saguaros,
I was working with the site for months in last year.
My custom.css was doing what I wrote in. What happened in the past months?
Periodically updated things in JAEXT manager and also Joomla from 3.2.x to 3.4.1.
Strange but checking the public_html/templates/ja_nex_t3/etc/assets.xml file contains nothing about CSS.
Are you sure that we need override those core files just to be able to continue working?
This “local” folder solution is new for me.
Please help!Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
March 27, 2015 at 4:06 am #564786I think the issue comes from the updating to Joomla 3.4.1 as this template is not ready for this latest version of Joomla.
If you have backup of previous working version , pls roll it back.
We are in progress of updating our templates to this latest version 3.4, once we finish updating process and release new version for template, you can upgrade then.
1 user says Thank You to Saguaros for this useful post
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
March 27, 2015 at 3:47 pm #564853Hi Saguaros,
There are backups, of course… but this is a LIVING SITE as I mentioned it before.
How should I ask the owner and the users to forget or recreate dozens of articles they created since the J3.4 update?
Please put this annoying issue (:(() on the developers table to solve it ASAP!
Thank you!Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
March 30, 2015 at 2:00 am #564999Hi
Due to the large template collection, we are still in progress of updating our templates to this latest version. The first pack of templates has been released last week, I will keep you updated.
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
March 31, 2015 at 12:47 pm #565218Dear Saguaros,
As J3.4 is out since 24. Feb. and rollback is not possible at this stage… using the template without custom.css is more than a pain. Please give a fast lifebelt ASAP (today)! I hope it is just a single row to put it in a php or xml file to make them know that yes… there is a custom.css!:-[
…until the reinforcement arrives in the name of an updated template.Strange but true that the site looks like it is styled by my custom.css but by a previous state.
Any change I have made since the J3.4 update is ineffective.Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
March 31, 2015 at 3:30 pm #565228You can specific the style in ‘custom.css’ which doesn’t take effect on your site and send me some screenshots of how you want to achieve, and PM me URL, admin + ftp account of your site. I will try to check it for you.
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
April 1, 2015 at 11:40 am #565346Dear Saguaros,
please tell me which file (php? xml?) declares to use the file named custom.css!
With an other template factory we have the same fault but adding a line to the templatesTEMPLATENAMEincludesframe_inc.php can solve the problem.
The missing line is: $yt->ytStyleSheet(‘css/your_css.css’); 😉S(h)ame here and there too… :-[
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
April 2, 2015 at 1:42 am #565402With templates based on new T3 framework, you can check via ‘head’ block of template: /templates/ja_nex_t3/tpls/blocks/head.php
<?php
// CUSTOM CSS
if(is_file(T3_TEMPLATE_PATH . '/css/custom.css')) {
$this->addStyleSheet(T3_TEMPLATE_URL.'/css/custom.css');
}
?>palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
April 20, 2015 at 11:29 pm #567674Checked and the lines are there but worth nothing.
Hoped for a solution of the updates since your post but now everything is fresh and still the same.
:((:((:((Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
June 4, 2015 at 2:31 pm #572892Ohh, finally I found my fault. I Always edited the custom.css in the root css folder but the right one would have been in the public_html/templates/ja_nex_t3/css/themes/orange
…while the site runs in this theme! :-[palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
June 4, 2015 at 2:31 pm #737926Ohh, finally I found my fault. I Always edited the custom.css in the root css folder but the right one would have been in the public_html/templates/ja_nex_t3/css/themes/orange
…while the site runs in this theme! :-[palos Friendpalos
- Join date:
- January 2013
- Posts:
- 369
- Downloads:
- 37
- Uploads:
- 8
- Thanks:
- 125
- Thanked:
- 27 times in 7 posts
June 5, 2015 at 7:51 pm #573089My happiness was too early!
e.g.: the .ja-zinwrap .ja-zinlinks ul li style is defined in the public_html/templates/ja_nex_t3/html/mod_janewspro/nex/style.css.
But I cannot override it in the public_html/templates/ja_nex_t3/css/themes/orange/custom.css or even in the root public_html/templates/ja_nex_t3/custom.css!
>:(:(( -
AuthorPosts
This topic contains 24 replies, has 2 voices, and was last updated by palos 9 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum