Little code, but this will apply a nice fade in effect every time your forum page loads.
Open your 'headerinclude' template:
ACP > Templates & Styles > Templates {your_theme_name} Templates > Ungrouped Templates > headerinclude
Locate the code:
Add before that:
Save the template.
Open your header template:
ACP > Templates & Styles > Templates {your_theme_name} Templates > Header Templates > header
Add at the very beginning:
In the same template locate:
Change it to:
Save the template.
Now see what happens ...
Note: In javascript; "2000" is the milisecond value of the fade in effect. Change the number asper your requirement (less value = quick fade-in, greater value = lengthy fade in).
Open your 'headerinclude' template:
ACP > Templates & Styles > Templates {your_theme_name} Templates > Ungrouped Templates > headerinclude
Locate the code:
{$stylesheets}
Add before that:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
Save the template.
Open your header template:
ACP > Templates & Styles > Templates {your_theme_name} Templates > Header Templates > header
Add at the very beginning:
<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function() {
jQuery("#content").fadeIn(2000);
});
</script>
In the same template locate:
<div id="content">
Change it to:
<div id="content" style="display:none;">
Save the template.
Now see what happens ...
Note: In javascript; "2000" is the milisecond value of the fade in effect. Change the number asper your requirement (less value = quick fade-in, greater value = lengthy fade in).