<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Customizing CSS file - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Fri, 14 Aug 2026 00:15:55 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: Customizing CSS file</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/#post-41795</link>
                        <pubDate>Thu, 21 May 2020 06:53:45 +0000</pubDate>
                        <description><![CDATA[Ok, thanks @alvina, I understand.]]></description>
                        <content:encoded><![CDATA[Ok, thanks @alvina, I understand.]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>fawp</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/#post-41795</guid>
                    </item>
				                    <item>
                        <title>RE: Customizing CSS file</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/#post-41772</link>
                        <pubDate>Wed, 20 May 2020 12:45:54 +0000</pubDate>
                        <description><![CDATA[@fawp,
There is no way to customize those files.
However, if you&#039;re familiar with programming and need to make those changes, please put the following code in the current active theme func...]]></description>
                        <content:encoded><![CDATA[<p>@fawp,</p>
<p>There is no way to customize those files.</p>
<p>However, if you're familiar with programming and need to make those changes, please put the following code in the current active theme <span style="color: #000080"><strong>functions.php</strong></span> file. The code provided below allows you to disable the our CSS files and enable the custom files provided by you.</p>
<pre class="c-mrkdwn__pre" data-stringify-type="pre">add_action('wp_enqueue_scripts', function(){<br />   wp_deregister_style('wpforo-style');<br />   wp_register_style('wpforo-style', '<span style="color: #ff0000"><strong>/YOUR/CUSTOM/STYLE/CSS/STYLE.CSS</strong></span>', false, '<span style="color: #ff0000"><strong>YOUR_STYLE_VERSION</strong></span>' );<span class="c-mrkdwn__br" data-stringify-type="paragraph-break"></span>   wp_deregister_style('wpforo-widgets');<br />   wp_register_style('wpforo-widgets', '<span style="color: #ff0000"><strong>/YOUR/CUSTOM/WIDGET/CSS/WIDGETS.CSS</strong></span>', false, '<span style="color: #ff0000"><strong>YOUR_WIDGET_STYLE_VERSION</strong></span>' );<span class="c-mrkdwn__br" data-stringify-type="paragraph-break"></span>   wp_deregister_style('wpforo-dynamic-style');<br />   wp_register_style('wpforo-dynamic-style', '<span style="color: #ff0000"><strong>/YOUR/CUSTOM/COLORS/CSS/COLORS.CSS</strong></span>', false, '<span style="color: #ff0000"><strong>YOUR_COLORS_CSS_VERSION</strong></span>' );<br />});</pre>
<p><span>Please note the <span style="color: #ff0000"><strong>red</strong> </span>marked code should be your file path and the version of that file to reset the caches if those exist.</span></p>
<p><strong>But please note if we update the plugin, and add a new feature that has some relation with styles, you'll not have those new features. Then you will need to go to this file, see changes and manually add it on your CSS file. Or after that customization, you should not update the plugin.</strong></p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Alvina</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/#post-41772</guid>
                    </item>
				                    <item>
                        <title>RE: Customizing CSS file</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/#post-41685</link>
                        <pubDate>Mon, 18 May 2020 13:09:28 +0000</pubDate>
                        <description><![CDATA[Hi @Sofy
 
Over the past few days I have been reading about wpForo style customization and I have come across this thread here.
 
I just want to clarify: you mention here that, at the mo...]]></description>
                        <content:encoded><![CDATA[<p>Hi @Sofy</p>
<p> </p>
<p>Over the past few days I have been reading about wpForo style customization and I have come across this thread here.</p>
<p> </p>
<p>I just want to clarify: you mention here that, at the moment</p>
<blockquote data-userid="4534" data-postid="37580" data-mention="sofy">
<div class="wpforo-post-quote-author"><strong> Posted by: @sofy </strong></div>
<p>CSS files are not included in theme overwriting method. I'm really sorry but there is no way to overwrite colors.css and style.css</p>
</blockquote>
<p>yet in <a href="https://wpforo.com/docs/root/forum-themes/theme-files/" target="true">this document that mentions theme files</a> I see at the very end of the page:</p>
<blockquote>
<p><span style="color: #ff6600">IMPORTANT:</span> Please don’t use these two files for template style and color customization. These are theme core files and should not be changed. <strong>Style should be customized using <span style="color: #993366">style.css</span> file</strong>.</p>
</blockquote>
<p>The last paragraph (in bold) seems to be at odds with the statement above. Is it a matter of amending the documentation in that page, or am I missing something?</p>
<p> </p>
<p>Many thanks as always,</p>
<p>fawp</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>fawp</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/#post-41685</guid>
                    </item>
				                    <item>
                        <title>RE: Customizing CSS file</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/#post-37580</link>
                        <pubDate>Thu, 05 Mar 2020 09:16:54 +0000</pubDate>
                        <description><![CDATA[Hi @zmgma,
As I&#039;ve already mentioned here:the CSS files are not included in theme overwriting method. I&#039;m really sorry but there is no way to overwrite colors.css and style.css. The only wa...]]></description>
                        <content:encoded><![CDATA[<p>Hi <span>@zmgma,</span></p>
<p>As I've already mentioned here: <a href="https://wpforo.com/community/how-to-and-troubleshooting-2/can-i-change-colors-css-file/">https://wpforo.com/community/how-to-and-troubleshooting-2/can-i-change-colors-css-file/</a> t<span>he CSS files are not included in theme overwriting method. I'm really sorry but there is no way to overwrite colors.css and style.css. The only way is using colors settings options in Dashboard &gt; Forums &gt; Settings &gt; Styles admin page.</span></p>
<p>You should add the custom CSS codes in the "Custom CSS code" textarea.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Sofy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/#post-37580</guid>
                    </item>
				                    <item>
                        <title>Customizing CSS file</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/#post-37565</link>
                        <pubDate>Thu, 05 Mar 2020 00:35:56 +0000</pubDate>
                        <description><![CDATA[Hello!
I have read this documents and it helps a lot.
I have one more suggestion.
Please support customized style.css and colors.css like that layout customization.
If I add those two fi...]]></description>
                        <content:encoded><![CDATA[<p>Hello!</p>
<p>I have read this documents and it helps a lot.</p>
<p><a href="../docs/root/forum-themes/theme-customization/">https://wpforo.com/docs/root/forum-themes/theme-customization/</a></p>
<p>I have one more suggestion.</p>
<p>Please support customized style.css and colors.css like that layout customization.</p>
<p>If I add those two files under theme file &gt; wpforo &gt; classic, that's how it works.</p>
<p>Thank you.</p>
<p>Best regards,</p>
<p>Youzer</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>zmgma</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/customizing-css-file/#post-37565</guid>
                    </item>
							        </channel>
        </rss>
		