Page 1 of 1

Problem with RSS icon

Posted: Tue Apr 05, 2011 6:19 am
by Banop
Use phpbb3 forum based on the subSilver theme and I have a problem with the RSS icon.
When you change the prosilver stjle forums, RS is shown on all topics subsilver not. How do I add the icon for your theme, which is based on subSilver Theme?

Thanks in advanced !

Re: Problem with RSS icon

Posted: Sat Apr 09, 2011 12:02 pm
by cisco007
I am not really sure if you mean the one that shows in the forum list, but i don't think subsilver2 has it by default, but you could try this!

Open: styles/subsilver2/theme/stylesheet.css

find:

Code: Select all

.username-coloured {
   font-weight: bold;
}
after add:

Code: Select all

/* Feed icon in forumlist_body.html */
a.feed-icon-forum {
   float: right;
   margin: 3px;
}
Open: styles/subsilver2/template/forumlist_body.html

find:

Code: Select all

                <a class="forumlink" href="{forumrow.U_VIEWFORUM}">{forumrow.FORUM_NAME}</a>
after add:

Code: Select all

         <!-- IF S_ENABLE_FEEDS and forumrow.S_FEED_ENABLED --><a class="feed-icon-forum" title="{L_FEED} - {forumrow.FORUM_NAME}" href="{U_FEED}?f={forumrow.FORUM_ID}"><img src=./images/feed.gif" alt="{L_FEED} - {forumrow.FORUM_NAME}" /></a><!-- ENDIF -->
or to add it to more locations in the subsilver2 style read this!
http://www.phpbbandbbcodes.com/viewtopi ... 5903#p5903

Re: Problem with RSS icon

Posted: Mon Apr 11, 2011 3:18 pm
by Banop
Nice, i solved problem but i have new "problem" with RSS.
How to change RSS topic title.
Now the title for a Topic like this:
Forum Name • Topic Title

and I want to be like this:
Topic Title

What do I need to edit to get the above changes?