22nd Jan, 03:42 am
(21st Jan, 01:15 am)Legitti Wrote:
index gives me that
And when i edit or add rep, that pops up
The following will fix the add/remove rep issue you're facing.
In the header template find:
Code:
<div id="color_modal" class="modal">
Replace with:
Code:
<div id="color_modal">
<div class="modal">
and remember to add another closing </div> tag to for that new div (you'll see a bunch </div>
</div>
</div> tags in header template)
Repeat the same for footer_theme and footer_language templates (remove class="modal" from parent div and add it in a new one, just below <div id="footer_modal"> and div id="lang_modal) and include also </div> closing div tags when you move class="modal" into new <div> element).
In global.css add:
Code:
div[id*="_modal"] {display:none;}