Articlkes Background Posted by panos on Fri 19 of Aug, 2011 15:26 GMT-0000 posts: 1 Hi, where in the css file can i change the background i list or/and read Articles? Tiki: 6.3 , Theme: Arcturus what is the parameter and where? Sorry but when i press "search" in this page it sends me back too themes.tiki.org main page.. regards Panos Greece
Posted by Gary Cunningham-Lee on Mon 05 of Sep, 2011 14:54 GMT-0000 posts: 254 Hi, Panos, Sorry for the late response. In styles/arcturus.css there is a rule, at line 44: Copy to clipboard#c1c2 #wrapper #col1 #tiki-center { background: #EFEFE7; padding-left: 5px; padding-right: 5px; padding-top: 1px; } So you can either edit this itself, or input the rule in the Look and Feel custom CSS textarea so it won't be overwritten when you update your site files. To restrict the effect to the Arcturus theme (if you make the rule in the L&F admin, and if you use more than one theme at the site), you can use a filter like this (and of change #fff to the color that you want): Copy to clipboard{if $prefs.style eq 'arcturus.css'} #c1c2 #wrapper #col1 #tiki-center {background: #fff;} {/if} If you just use the Arcturus theme, then you don't need the {if} {/if} tags, and the rule, not needing to be applied selectively, will always be in effect. This change will affect the page center background in all parts of your site. If you just want the change on the articles pages, then use this version: Copy to clipboard.tiki_cms #c1c2 #wrapper #col1 #tiki-center {background: #fff;} Plus the style filter if needed as described above. -- Gary - ZukaThemes.com