Recent Topics

1 Aug 11, 2015 06:48    

I tried to change the background around the forum to black #00000 ... changed style.css 's background is not working ... changed _skin.class.php 's background is not working ...

sigh ... This B2E forum still have no image upload button on first post ...

see next post ... those blue lines ... that is white background ... So, how do I change the white background into black background around the Bootstrap Forum ?

3 Aug 11, 2015 07:04

@deafsilencer the CSS of the forum's skin is minified, so you need to add your rules to style.min.css. So, adding the following code to that file will do the trick:

body {
	background-color: #000;
}

However, the recommended way to do this is by editing the file style.less and using the Grunt method (explained here: http://b2evolution.net/man/skin-quality-control and http://gruntjs.com/getting-started), which will atuomatically compile the style.css and minify it to style.min.css.

4 Aug 11, 2015 11:05

Or... simplest solution: you can delete style.min.css and then edit style.css. (This is teh easiest solution, not the one that will give you best performance).

5 Aug 11, 2015 17:21

Both plan "add your rules" and "delete and easiest" way did not changed the color of the background ...

I have not done the "Recommened" way, but tonight, I will have to read it carefully and follow thru.

However, the recommended way to do this is by editing the file style.less and using the Grunt method (explained here: http://b2evolution.net/man/skin-quality-control and http://gruntjs.com/getting-started), which will atuomatically compile the style.css and minify it to style.min.css.

Thank you.


Form is loading...