2
This example presumes you are using XOOPS 2.0.14x or better, and gives you the option to employ 3 stylesheets - one for your smartsection index page, one for all other smartsection pages and another for any page outside of smartsection. You can change that to suit your needs by changing the style_yourstylesheet.css reference.
Open your theme.html and look for this line in the head of your document:
<link rel="stylesheet" type="text/css" media="all" href="<{xoImgUrl /style.css}>" />
Replace with:
<{if $xoops_dirname == "smartsection"}>
<{if $xoops_requesturi == "/your_xoops_root/modules/smartsection/index.php" or $xoops_requesturi == "/your_xoops_root/modules/smartsection/"}>
<link rel="stylesheet" type="text/css" media="screen" href="<{xoImgUrl /style_smartsection_main.css}>" />
<{else}>
<link rel="stylesheet" type="text/css" media="screen" href="<{xoImgUrl /style_smartsection_other.css}>" />
<{/if}>
<{else}>
<link rel="stylesheet" type="text/css" media="screen" href="<{xoImgUrl /style.css}>" />
<{/if}>
Hope this helps!