Vanilla CSS
Does anyone know where the controls are in the .css for the front disscussion page on the vanilla v3
http://gliving.tv/community/
I am looking to just make those shades of whites / greens.
0
This discussion has been closed.
Comments
Thanks for the kudos!
And check why forum page start like that:
<code> < /code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<?php /* Extension Name: Lussumo Banner Extension Url: http://lussumo.com/docs/ Description: Adds the lussumo banner to the top of the page. Version: 1.0 Author: Mark O'Sullivan Author Url: http://www.markosullivan.ca/ */ if (in_array($Context->SelfUrl, array("index.php", "account.php", "categories.php", "comments.php", "post.php", "search.php", "settings.php"))) { class LussumoBanner extends Control { function LussumoBanner(&$Context) { $this->Name = "LussumoBanner"; $this->Control($Context); } function Render() { echo '<center> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="978" height="227" id="community-g-nav" align="top"> <param name="allowScriptAccess" value="sameDomain" /> <param name="movie" value="http://gliving.tv/navigation/community-g-nav.swf" /> <param name="quality" value="autohigh" /> <param name="scale" value="exactfit" /> <param name="wmode" value="transparent" /> <param name="bgcolor" value="#ffffff" /> <embed src="http://gliving.tv/navigation/community-g-nav.swf" quality="autohigh" scale="exactfit" wmode="transparent" bgcolor="#ffffff" width="978" height="227" name="community-g-nav" align="top" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object></center>'; } } $LussumoBanner = new LussumoBanner($Context); $Page->AddRenderControl($LussumoBanner, $Configuration["CONTROL_POSITION_HEAD"]+1); $Head->AddStyleSheet('extensions/LussumoBanner/style.css'); } ?>