I seem to miss something because I do not workreVvo ! wrote:Cristian Very good, excellent job!
I'm interested in putting it in my forum
Should I put in my header this?
And this in my style?Code: Select all
<script type="text/javascript"> $(document).ready(function() { // When the mouse enters div1, show div2 $('#sn-not-logged-in').mouseenter(function() { $('#sn-not-logged-in-hover').fadeIn('medium'); }); // When the user's mouse leaves div2, fade it out $('#sn-not-logged-in-hover').mouseleave(function() { $('#sn-not-logged-in-hover').fadeOut('medium'); }); }); </script>
Code: Select all
#sn-header {background: url("../images/red/headerbg.png");} a#sn-logo {background-image: url("../images/red/logo.png");} #sn-not-logged-in {background-image: url("../images/red/login-notice.png");} #sn-not-logged-in-hover {background-image: url("../images/red/login-notice-hover.png");}
Excellent, thanks.Christian 2.0 wrote:Yes, you're absolutely right. My mistake
Here you go:
Code: Select all
/* Forum list column styles */
dl.icon {
min-height: 35px;
background-position: 10px 50%; /* Position of folder icon */
background-repeat: no-repeat;
}
dl.icon dt {
padding-left: 45px; /* Space for folder icon */
background-repeat: no-repeat;
background-position: 5px 95%; /* Position of topic icon */
}
Code: Select all
<dl class="icon sn-index-icon" style="background-image: url({forumrow.FORUM_FOLDER_IMG_SRC}); background-repeat: no-repeat; <!-- IF SCRIPT_NAME eq 'index' or 'viewforum' -->padding-left: 40px;<!-- ENDIF -->">
Code: Select all
<dl class="icon" style="background-image: url({forumrow.FORUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
Also interested in this.Solofront wrote:The "useless" space on the sides, are we able to put verticle banners there, separate from the actual forum, whether they be advertising banners or others?
Code: Select all
#wrap {
padding: 0 20px;
min-width: 650px;
width: 900px;
margin: 0 auto;
}