ok it is server buffer limit , it is loading first line coming down , your php.ini has buffer limit set
here is solution not to poke around php.ini
open index.php , place this code before </head> ending tag
| Code: |
<link rel='stylesheet' type='text/css' href='modules/mod_myfp_slider/mod_myfp_slider_style.css'/>
<script type='text/javascript' src='modules/mod_myfp_slider/mootools.js'></script>
<script type='text/javascript' src='modules/mod_myfp_slider/slide.js'></script>
|
and place this in your layout.css
| Code: |
.moduletablemyfps_ a.myfps_newstitle_c {
display: block;
font-weight: bold;
margin-bottom:5px;
border: none;
font: bold 125%/normal Cambria, "Times New Roman", Times, serif;
text-decoration: none;
color: #cc0202;
}
.moduletablemyfps_ a.myfps_newstitle_c:hover
{
border-bottom: none;
color: #28579A;
}
.moduletablemyfps_ a.myfps_rm_c {
color: #cc0202;
border: none;
text-decoration: none;
}
.moduletablemyfps_ a.myfps_rm_c:hover
{
color: #28579A;
}
.moduletablemyfps_ a.myfps_al_c {
color:#28579A;
text-decoration: none;
}
.moduletablemyfps_ a.myfps_al_c:hover {
color:#cc0202;
text-decoration: none;
}
|