1. There is no problem with the loading of files
all files get loaded !
2. The application of CSS rules is correct
The problem you have various CSS rules that you have not made template specific:
e.g this rule
Code:
.mod_flexicontent_wrapper .mod_flexicontent_featured_wrapper.odd, .mod_flexicontent_wrapper .mod_flexicontent_standard_wrapper.odd {
background-color: transparent;
...
}
Code:
.mod_flexicontent_wrapper .mod_flexicontent_featured_wrapper.odd, .mod_flexicontent_wrapper .mod_flexicontent_standard_wrapper.odd {
background-color: #EFEFEF;
...
}
you see that it is 100% same in "
their name" ?
so the last file to load will take precedence
Do this: (i am giving CSS lessons now, and custom development help this is beyond the purpose of this forum)
in all the PHP files change:
Code:
<div class="mod_flexicontent_wrapper ..."
to e.g.
Code:
<div class="mod_flexicontent_wrapper fiches ..."
and in then the above rule will become:
Code:
.mod_flexicontent_wrapper.fishes .mod_flexicontent_featured_wrapper.odd, .mod_flexicontent_wrapper .mod_flexicontent_standard_wrapper.odd {
background-color: transparent;
...
}
notice the the:
.mod_flexicontent_wrapper.fishes has no space since they are CSS classes of the same HTML tag
same do for
Code:
class="mod_flexicontent<?php
change to
Code:
class="mod_flexicontent fiches<?php
and then in the rules:
Code:
.mod_flexicontent ...
change to
Code:
.mod_flexicontent.fishes ...
NOTE there might be more places needed to do this !!!
anyway, for future i will update the news.php and news.css to make it easier for developers
Regards