Problem with RSS icon

General topics relating to phpBB3 to be posted in here.
Post Reply
Banop
Forum Member
Forum Member
Posts: 5
Joined: Wed Nov 03, 2010 8:38 pm

Problem with RSS icon

Post 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 !
User avatar
cisco007
Staff
Staff
Posts: 501
Joined: Tue Oct 07, 2008 3:44 am

Re: Problem with RSS icon

Post 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
Banop
Forum Member
Forum Member
Posts: 5
Joined: Wed Nov 03, 2010 8:38 pm

Re: Problem with RSS icon

Post 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?
Post Reply