Page 1 of 1
SE PRO
Posted: 28. July 2009 08:44
by Kurtan
So I browsed through some styles you made and found this one for SE PRO:
http://area51.mikevil.de/portal.php?style=5&style=8
Though when I do it. Download the orginal file adn then adding your subsilver2 files to it I get this result:
http://ojje.eu/forum/portal.php?style=3&style=10
Thought you might be able to help fast since you have allready done it.
The black borders are missing if you didn't notice.
Thank you for help in advance!
Re: SE PRO
Posted: 28. July 2009 12:42
by Mike
I dont think you've added trhe subsilver2 files but prosilver
You need to follow the instructions for prosilver in our install.xml especialy the part with the css files (adding portal.css to stylesheets.css)
After that, you have to replace your _block_config.html with this one:
viewtopic.php?f=42&t=2111
Attend to the additional changes beneath the codebox!
Re: SE PRO
Posted: 28. July 2009 13:25
by Kurtan
ah yea ment prosilver
Thanks for the quick reply. Starting to get it to work. just some minor fixes left.
cheers!
Re: SE PRO
Posted: 28. July 2009 13:53
by Kurtan
One more thing.
As you can notice the boxes are out of order. The are outside the lines and I ofc want it to look as good as yours. So you think you can point me in direction where I should look?
Think I need to have less width on the center block. But I have no idea where to pu that info in
edit: Managed to get the middle correct. Though the bottom part is still to wide.
Re: SE PRO
Posted: 28. July 2009 20:09
by Mike
Hmm... ok...
Your Problem with the Blocks is a missplaced "<!-- endif -->" in your overall_header.html
You cheatet your blocks in the right position with the padding tag, but you dont solve the causal problem
Redo your changes in your portal_body (except the copyright) and correct your header as followed:
find:
Code: Select all
<ul class="linklist rightside">
<li class="icon-faq"><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li>
<!-- IF not S_IS_BOT -->
<!-- IF S_DISPLAY_MEMBERLIST --><li class="icon-members"><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF -->
<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED --><li class="icon-register"><a href="{U_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF -->
<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l">{L_LOGIN_LOGOUT}</a></li>
<!-- ENDIF -->
<!-- ENDIF -->
</ul>
<span class="corners-bottom"><span></span></span></div>
</div>
</div>
replace with:
Code: Select all
<ul class="linklist rightside">
<li class="icon-faq"><a href="{U_FAQ}" title="{L_FAQ_EXPLAIN}">{L_FAQ}</a></li>
<!-- IF not S_IS_BOT -->
<!-- IF S_DISPLAY_MEMBERLIST --><li class="icon-members"><a href="{U_MEMBERLIST}" title="{L_MEMBERLIST_EXPLAIN}">{L_MEMBERLIST}</a></li><!-- ENDIF -->
<!-- IF not S_USER_LOGGED_IN and S_REGISTER_ENABLED --><li class="icon-register"><a href="{U_REGISTER}">{L_REGISTER}</a></li><!-- ENDIF -->
<li class="icon-logout"><a href="{U_LOGIN_LOGOUT}" title="{L_LOGIN_LOGOUT}" accesskey="l">{L_LOGIN_LOGOUT}</a></li>
<!-- ENDIF -->
</ul>
<span class="corners-bottom"><span></span></span></div>
</div>
<!-- ENDIF -->
</div>