MyBB Community Forums

Full Version: Defult theme 1.8 icons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello all
i wonder how i can change the forums icons in the defult theme for 1.8, 
becuase as i see , there is no separete icons ( ON , OFF, LOCKED ) and there is only one picture spirte

[Image: 2942vid.png]

thanks in advance for your answers 
in global.css find


.forum_status {
height: 30px;
width: 30px;
background: url(../../../images/forum_icon_sprite.png) no-repeat 0 0;
display: inline-block;
}

.forum_on {
background-position: 0 0;
}

.forum_off {
background-position: 0 -30px;
}

.forum_offlock {
background-position: 0 -60px;
}

.forum_offlink {
background-position: 0 -90px;
}

and remove background property from forum_status and background position from forum_on, off, offlock and offlink. Assign your new icons to forum_on,off,offlink and offlock

.forum_on {
background-image:url(../../../images/forum_on.png);
}

.forum_off {
background-image:url(../../../images/forum_off.png);
}

.forum_offlock {
background-image:url(../../../images/forum_offlock.png);
}

.forum_offlink {
background-image:url(../../../images/forum_offlink.png);
}
Thanks sir , working
another question
how can i change the forum backgorund ,
as you see in the defult theme the background is white
thanks again for your effort
(2014-12-14, 05:42 AM)feeling_bored Wrote: [ -> ]how can i change the forum backgorund ,
as you see in the defult theme  the background is white

in global.css find #logo and #content and change the background color for them...
not working
(2014-12-14, 07:09 AM)feeling_bored Wrote: [ -> ]not working

what change you did and whats your forum url...
(2014-12-14, 07:16 AM)mmadhankumar Wrote: [ -> ]
(2014-12-14, 07:09 AM)feeling_bored Wrote: [ -> ]not working

what change you did and whats your forum url...

i changed the color code in global cc  as you requested .

thanks 
(2014-12-14, 07:43 AM)feeling_bored Wrote: [ -> ]i changed the color code in global cc  as you requested .

url , auto-epc.org

here is the background i want to change 

thanks 

i dont see the change in color codes... still #content shows "background: #fff;" change that to something like "background: #D1D1D1;"
thanks sir .. its working
now i want to change the topics (thread) colors
[Image: 314tnw2.png]
thanks again for your helpfull answers
.trow1 and .trow2 classes in global.css (for that postbit area).
Pages: 1 2