Hi Stramm
Maybe you can help me with this.
I'm adapting the Hardwired theme for the modpack and have a few issues.
I have added required lines in CSS and so on.
When I install the modpack the text "Powered by" and "Modded by" turns black. Where can I control this color?
Another thing I would like to change is the formatting of font and background color in boxes.
I've attached a screencapture.
Mimer 8)
Try using the web developer extension in firefox, or just read the html to see what classes are being used where. The footer is controlled by the footer class for example.
OK, thats the template.html right?
Mimer 8)
What? To change the colours you need to modify your stylesheet, ie themes/hardwired/style.css. It is advisable to make your own custom theme by copying hardwired instead of modifying it directly.
Quote from: Nibbler on February 02, 2008, 11:57:35 PM
... or just read the html to see what classes are being used where..
This html is the template.html right?
I'm modifying a copy of course.
Mimer 8)
I meant the HTML output. Right click -> view source. Search for what you want to change and see what contains it.
OK.
Footer found and changed - in CSS ;D
I'll try to find the "box".
Mimer 8)
I found the box, but I cannot figure out any class for the box.
<td>
<br />Skift til:<br />
<select name="view" style="width: 250px;" onchange="this.form.submit();">
<option value="0" selected="selected">Aktive venner (0 users)</option>
<option value="3" >Jeg vil være venner med (0 users)</option>
<option value="2" >Brugere der vil være mine venner (0 users)</option>
<option value="1" >Blokkerede brugere (0 users)</option>
</select><!-- go button -->
<input type="submit" class="button" value="Go" />
</td>
Mimer 8)
Either modify the code and add a class or set a global style for all select elements.