Search found 93 matches

by KukY13
21 Jul 2010, 20:33
Forum: PhpBB3 Support
Topic: I NEED THIS TO DO
Replies: 20
Views: 9223

Re: I NEED THIS TO DO

After that code, understanding that [Link to rules] needs to be replaced with a link to rules, add this:

Code: Select all

<br /> <a href="[Link to rules]"></a>
by KukY13
21 Jul 2010, 20:24
Forum: PhpBB3 Support
Topic: I NEED THIS TO DO
Replies: 20
Views: 9223

Re: I NEED THIS TO DO

my code is <!-- IF S_DISPLAY_SEARCH --> <p class="searchbar"> <span style="float: {S_CONTENT_FLOW_BEGIN};"><a href="{U_SEARCH_UNANSWERED}"> {L_SEARCH_UNANSWERED}</a> <br /> <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS} </a> <!-- IF S_USER_LOGGED_IN --> <a href="{U_SEARCH_UNREAD}">{L ...
by KukY13
21 Jul 2010, 20:09
Forum: PhpBB3 Support
Topic: I NEED THIS TO DO
Replies: 20
Views: 9223

Re: I NEED THIS TO DO

Try making the code like this: <span style="float: {S_CONTENT_FLOW_BEGIN};"><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a> <br /> <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a> <!-- IF S_USER_LOGGED_IN --> <a href="{U_SEARCH_UNREAD}">{L_SEARCH_UNREAD}</a> <br /> <a href ...
by KukY13
21 Jul 2010, 19:52
Forum: PhpBB3 Support
Topic: I NEED THIS TO DO
Replies: 20
Views: 9223

Re: I NEED THIS TO DO

Remove:

Code: Select all

style="float: {S_CONTENT_FLOW_END};"
by KukY13
21 Jul 2010, 19:33
Forum: PhpBB3 Support
Topic: I NEED THIS TO DO
Replies: 20
Views: 9223

Re: I NEED THIS TO DO

Open overall_header.html. In it, find a part like this one: <span style="float: {S_CONTENT_FLOW_BEGIN};"><a href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a> | <a href="{U_SEARCH_ACTIVE_TOPICS}">{L_SEARCH_ACTIVE_TOPICS}</a></span> <!-- IF S_USER_LOGGED_IN --> <span style="float: {S_CONTENT_FLOW ...
by KukY13
21 Jul 2010, 19:23
Forum: PhpBB3 Support
Topic: I NEED THIS TO DO
Replies: 20
Views: 9223

Re: I NEED THIS TO DO

You open the template file, and replace all "|" with line breaks.
by KukY13
21 Jul 2010, 16:06
Forum: User Contributions
Topic: Usergroup Edition
Replies: 7
Views: 7036

Re: Usergroup Edition

Well if it's not valid, then why does it work? :| Because tons of pages who's owners don't know a thing about standards still use it! So it is only because of compatibility. But one day all code that isn't by the standards will stop being supported by browsers, and all pages containing that code ...
by KukY13
18 Jul 2010, 12:40
Forum: Submit a BBCode
Topic: Steam Profile
Replies: 2
Views: 11931

Re: Steam Profile

HTML Replacement is supposed to be written in HTML. You can't use BBCode in HTML Replacements. It should be like this:

BBCode:

Code: Select all

[steam]{INTTEXT}[/steam]
HTML:

Code: Select all

<img src="http://steamprofile.com/steam/profile/default/{INTTEXT}.png" />
by KukY13
18 Jul 2010, 12:37
Forum: User Contributions
Topic: Usergroup Edition
Replies: 7
Views: 7036

Re: Usergroup Edition

Just one thing I mind: <center> tag is not used anymore. You should use CSS to center those images. The easiest way is to do that in their parent tag. Like this: Find: <p> <!-- IF AVATAR_IMG -->{AVATAR_IMG}<!-- ENDIF --> <!-- IF RANK_IMG -->{RANK_IMG}<!-- ENDIF --> <!-- IF GROUP_RANK -->{GROUP_RANK ...
by KukY13
17 Jul 2010, 09:47
Forum: User Contributions
Topic: Hide rank names
Replies: 1
Views: 6115

Hide rank names

Rank names are shown somewhere near the rank image. That is not very useful, as special ranks images have rank title written on them, and regular rank images, based on post number, are informative enough for themselves. Open styles/prosilver/template/viewtopic_body.html Find: <!-- IF postrow.RANK ...