I believe there are some members here who have done this and can post their modifications or you can download the static version and it is alread installed for you
05.08.09The Black Ice Project Please use the forums for support requests. Review the Board Rules here.
I love this mod and I almost have the mod licked. My one issue is that I am getting a portion of the background above the drop down bar. First picture shows the bar with the portion of the background just above it. Second picture shows the original menubar without the portion of the background showing.
I am pretty sure this is a formatting issue but I cannot firgure out where the problem is. I am still a noob at this but, I am catching on quickly.
I am using a modified bo2soft style. Inserted code is from my overall_header.html file. More code can be provided if needed.
/** * Find a member */ function find_username(url) { popup(url, 760, 570, '_usersearch'); return false; }
/** * Mark/unmark checklist * id = ID of parent container, name = name prefix, state = state [true/false] */ function marklist(id, name, state) { var parent = document.getElementById(id); if (!parent) { eval('parent = document.' + id); }
if (!parent) { return; }
var rb = parent.getElementsByTagName('input');
for (var r = 0; r < rb.length; r++) { if (rb[r].name.substr(0, name.length) == name) { rb[r].checked = state; } } }
<!-- IF ._file -->
/** * Play quicktime file by determining it's width/height * from the displayed rectangle area * * Only defined if there is a file block present. */ function play_qt_file(obj) { var rectangle = obj.GetRectangle();
if (rectangle) { rectangle = rectangle.split(',') var x1 = parseInt(rectangle[0]); var x2 = parseInt(rectangle[2]); var y1 = parseInt(rectangle[1]); var y2 = parseInt(rectangle[3]);
/* phpBB 3.0 Style Sheet -------------------------------------------------------------- Style name: bo2Soft Based on style: subSilver (the default phpBB 2 style) Original author: subBlue ( http://www.subBlue.com/ ) Modified by: bozUNtu ( http://www.bozuntu.org ) -------------------------------------------------------------- */
/* Layout */ * { /* Reset browsers default margin, padding and font sizes */ margin: 0; padding: 0; }
html { font-size: 100%; }
body { font-family: "Lucida Grande", Verdana, Helvetica, Arial, sans-serif; color: #323D4F; background-color: #D8CFB4; font-size: 62.5%; /* This sets the default font size to be equivalent to 10px */ margin: 0 auto; }
/* ================================================================ This copyright notice must be kept untouched in the stylesheet at all times.
The original version of this stylesheet and the associated (x)html is available at http://www.cssplay.co.uk/menus/pro_drop6.html Copyright (c) 2005-2007 Stu Nicholls. All rights reserved. This stylesheet and the associated (x)html may be modified in any way to fit your requirements. =================================================================== */