by Sir. Mayo June 1st 2013, 12:07 am
I did what you did and all it did was change my text humm... Im still looking in to it to see how to do it for you Ok so i found out how to do it;
FrostByte wrote:Here's what happened.... this is the code for the CSS total
- Code:
/*
--------------------------------------------------------------
Colours and backgrounds for common.css
-------------------------------------------------------------- */
$(function() {
$('div.post:has(".admin1")').css('background','#F00 url(http://i.imgur.com/BVlbi.png) repeat-y');
});
}
html, body {
color: #536482;
background-color: #373737;
}
h1 {
color: #FFFFFF;
}
h2 {
color: #28313F;
}
h3 {
border-bottom-color: #CCCCCC;
color: #115098;
}
hr {
border-color: #FFFFFF;
border-top-color: #CCCCCC;
}
hr.dashed {
border-top-color: #CCCCCC;
}
I changed the rank administrator the that:
- Code:
<span class="admin1">Administrator</span>
Yet it still doesn't work. I thought I got close though.
Remove all of that form your forum
Now in Rank Administration set the Rank title to
- Code:
<span class="Administrator">Administrator</span>
Then add this to Java script management
- Code:
$(function() {
$('.Administrator').Administrator('.post').addClass('Administrator-answer');
});
Make sure its set to all pages.
And now add this to your CSS style sheet:
- Code:
.post.online.Administrator-answer {
background: url("http://i.imgur.com/BVlbi.png") repeat-y scroll left top, url("http://2img.net/i/fa/prosilver/icon_user_online_en.png") no-repeat scroll right top #E5F1F9;
}
.post.Administrator-answer {
background: url("http://i.imgur.com/BVlbi.png") repeat-y scroll left top #E5F1F9;
}
I Modfied it from a nother post to fit your needs hope i did it right.
This is where i got the code to modify for you:
https://help.forumotion.com/t112318-helpgroup-backgrounds#736903