MyBB Community Forums
Latest Thread Syndication (RSS) - max img size - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Community Archive (https://community.mybb.com/forum-106.html)
+--- Forum: Archived Forums (https://community.mybb.com/forum-143.html)
+---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html)
+----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html)
+------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html)
+------ Thread: Latest Thread Syndication (RSS) - max img size (/thread-145075.html)



Latest Thread Syndication (RSS) - max img size - marcus123 - 2013-09-03

Hi, how can I set max img size for Latest Thread Syndication (RSS) views


RE: Latest Thread Syndication (RSS) - max img size - dthiago - 2013-09-04

img size =

<img src="path" width="xXx" heigth="xXx" />


RE: Latest Thread Syndication (RSS) - max img size - marcus123 - 2013-09-04

(2013-09-04, 07:17 AM)dthiago Wrote: img size =

<img src="path" width="xXx" heigth="xXx" />

Where do I add the CSS code? In the global.css?


RE: Latest Thread Syndication (RSS) - max img size - Arbaz - 2013-09-04

(2013-09-04, 01:37 PM)marcus123 Wrote:
(2013-09-04, 07:17 AM)dthiago Wrote: img size =

<img src="path" width="xXx" heigth="xXx" />

Where do I add the CSS code? In the global.css?

The above is a HTML code so it should be added into the templates however I'm unsure which template.


RE: Latest Thread Syndication (RSS) - max img size - marcus123 - 2013-09-05

The Thread Syndication (RSS) page shows in XML check this one please: http://community.mybb.com/syndication.php?fid=127&limit=15 how to locate template that controls this page?


RE: Latest Thread Syndication (RSS) - max img size - .m. - 2013-09-05

you can try like this -->
admin panel >> themes >> active theme >> Add Stylesheet (tab) -->
File Name --> syndication.css
Attached to --> select Specific files then click on Add another link
--> File <-- syndication.php & select Globally
then select Write my own content
type required css style code in the text area

img {max-width: 800px !important; height: auto !important;}
save the stylesheet and check your RSS syndication page

(image for guidance)


RE: Latest Thread Syndication (RSS) - max img size - marcus123 - 2013-09-06

Thanks .M. you're the man