Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
A couple of style questions
blizeH
✭✭
[ will edit this post should this ever come to fruition, with screenshots, download links etc. ]
A couple of questions regarding creating styles:
1) How do you make the topic's title at the top of each page non-bold? For example "Add-on Requests: MiniVanilli"
2) How do you change the colour of the author on the Extensions page?
3) Is there anyway to add a border (plain colour) around the entire thing? Just want to test something :-)
Thanks in advance.
A couple of questions regarding creating styles:
1) How do you make the topic's title at the top of each page non-bold? For example "Add-on Requests: MiniVanilli"
2) How do you change the colour of the author on the Extensions page?
3) Is there anyway to add a border (plain colour) around the entire thing? Just want to test something :-)
Thanks in advance.
0
This discussion has been closed.
Comments
In this case, I think you can just change the vanilla.css. It seems to work in my testing.
For #1, you would look for the ContentInfo h1 in the vanilla.css:
.ContentInfo * { font-size:14px; font-weight:bold; margin:0px; padding:0px; } .ContentInfo h1 { font-weight: normal; /*jimw for blizeH to change the topic title at the top to normal instead of bold*/ color: #fff; }
and
.ContentInfo h1 a { font-weight: normal; /*jimw for blizeH to change the topic title at the top to normal instead of bold*/ color:#ebebeb; text-decoration:none; }