My website is only local, not online.
I found that line 26 in modules\mod_news_pro_gk5\tmpl\default.php
- Code: Select all
<?php echo ' ' . $this->config['moduleclass_sfx']; ?>
makes the class "nsp" duplicated
that class "nsp" have position:relative so the navigation arrows with absolute position have problem
news show pro gk4 hasn't got that line
when i delete this line, navigation act like gk4 does.
Another thing in line 62 in modules\mod_news_pro_gk5\tmpl\view.php
- Code: Select all
<p class="nspText'.$class.'">'.$item['text'].'</p>
when i switch OFF the 'clean HTML code in the text',
the module close the
- Code: Select all
<p class="nspText"></p>
- Code: Select all
<p></p>
because i think html code like 'ul' or 'li' not allowed inside <p>
things get better when it is :
- Code: Select all
<div class="nspText'.$class.'">'.$item['text'].'</div>
Not a big deal but i have to hack the module two times
Maybe i am the only one who need this but i just let you know if you think its important or not.
Thanks