MyBB Community Forums

Full Version: How To Change?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I make my Thread and Post look like this.. Also the Board Statistics: http://gyazo.com/15eb966df46fcfd81086baab9f4b1d8f.png

My Forum: vtgn.net
Did you upload all the images correctly to its respective directory ??
If not :
Take a lott at this :

upload all your images from the theme image folder to your public_html/images folder.
You have to CHMOD settings to 644.
this : http://gyazo.com/7fe0de2ef0bcc1e4ae2ef5ae39122a5d

hope this helps Smile
regards,
(2012-12-16, 04:35 AM)envira Wrote: [ -> ]Did you upload all the images correctly to its respective directory ??
If not :
Take a lott at this :

upload all your images from the theme image folder to your public_html/images folder.
You have to CHMOD settings to 644.
this : http://gyazo.com/7fe0de2ef0bcc1e4ae2ef5ae39122a5d

hope this helps Smile
regards,

Thanks a lot ^^ Also in forums I've seen this CSS delay effect for when you hover over something.. how do you do that?
(2012-12-16, 05:20 AM)OfficialElex Wrote: [ -> ]Also in forums I've seen this CSS delay effect for when you hover over something.. how do you do that?

hover effects can be made using css.... for example:

button {
//css codes//
}

button:hover {
//css codes//
}
(2012-12-16, 11:08 AM)mmadhankumar Wrote: [ -> ]
(2012-12-16, 05:20 AM)OfficialElex Wrote: [ -> ]Also in forums I've seen this CSS delay effect for when you hover over something.. how do you do that?

hover effects can be made using css.... for example:

button {
//css codes//
}

button:hover {
//css codes//
}
tysm, i've been looking for that code for forever ^^.