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.
Vanilla Ocean
Vanilla Ocean
0
This discussion has been closed.
Comments
vanilla.css
Change line 380 from:background: url('tableheader.png') repeat-x 0 0;
to:background: #b4de18 url('tableheader.png') repeat 0 0;
Change line 390 from:
background-color: #ffeec5;
to:background-color: #fff7e3;
Change line 493 from:
background-color: #ffeec5;
to:background-color: #fff7e3;
Oh, and you'll want to replace tableheader.png with this one.
The first and the last point fix the table header from looking crap when you are on a narrow screen and the two middle points make the alternate comments/discussions background paler so it's not so I'm-a-different-colour-look-at-meeeeeeeeeee
Great style Jazzman, even if you don't like the "alternate" colour chage, perhaps you could implement the other two changes in the official style?
On my site - http://www.multitrackers.com
the title logo (see url below) should show up at the top, but does not show - http://www.multitrackers.com/themes/tabled/styles/ocean/title.jpg
position: relative;
background: url('panel.png') no-repeat 0 0;
height: 100px;
}
#Header * {
margin:0px;
padding:0px;
}
#Header #Logo {
height: 100px;
background: url('title.jpg') no-repeat right center;
}
#Header #Logo h1 {
display: none;
}
#Header ul {
position: absolute;
top: 50px;
left: 230px;
text-align:center;
z-index: 1000;
}
the title.jpg is the pic that does not show
Edit: The ultimate solution is to add the div Logo to the menu.php file as below after the div Header:
echo '<div id="Header"><div id="Logo"></div> <a name="pgtop"></a>
This will then show both images.
#Header #Logo {
to#Header h1 {
.Open up themes/tabled/menu.php... if its not there, copy the one from themes/menu.php into this folder and edit it.
There should be something like this inside:
<a href="'.$Tab['Url'].'" '.$Tab['Attributes'].'>'.$Tab['Text'].'</a></li>';
Change it like so:
<a href="'.$Tab['Url'].'" '.$Tab['Attributes'].' id="'. $Tab['Value'] .'">'.$Tab['Text'].'</a></li>';