http://www.artdroid.com/mindseye/
On that page you'll see that the tables have a thin white border on it.  I've searched through everything in CSS and cannot find that little bugger.   Once again...  what am I missing that should be obvious to me????
 
Thanks in advance.
artdroid
			
			
			
				Try your template.html.
look for (in default theme) <td valign="top" bordercolor="#666666" bgcolor="#FFFFFF" style="border: 1px solid;">
			
			
			
				Sadly that didn't do it...  all borders in my template.html are set to 0.
I'm using a personally modified version of Water Drop theme if that helps at all.
			
			
			
				Viewing your source code, you have no border tag set. For example:
Quote<table width="100%" height="100%" cellspacing="0" cellpadding="0">
			 
			
			
				Sorry, I didn't state clearly in my first post...  I'm trying to get "rid" of the thin white border.  I do not want it, or more preferrably, I want to change it from white to a similar gray.
Searching my template.html or source I'm not seeing anything I'd suspect as being the cause, but I've missed things before.
			
			
			
				Open up theme.php and search for this line:
Quote<table width="100%" height="100%" cellspacing="0" cellpadding="0">
Add a border="0" to it and see where that brings you.
			
 
			
			
				Nope...   made that change and the fine white border still remains at  http://www.artdroid.com/mindseye
Looking around inside of Theme.php was very revealing though.
			
			
			
				success!
Got it...
<!-- Start standard table -->
<table align="center" width="$width" cellspacing="1" cellpadding="0" class="maintable">
changed to  <!-- Start standard table -->
<table align="center" width="$width" cellspacing="0" cellpadding="0" class="maintable">
All better at http://www.artdroid.com/mindseye
Thanks guys.  I'm sure it's not the last question but that one was irritating.
FYI...  I also noticed that there's quite a bit of cross-linking between different themes which could be "bad".  The theme Water Drop  link over to iGames theme to grab it's filmstrip images (which I changed).   If someone would delete themes they weren't using they'd end up with broken links.
			
			
			
				Quote from: "Artdroid"FYI...  I also noticed that there's quite a bit of cross-linking between different themes which could be "bad".  The theme Water Drop  link over to iGames theme to grab it's filmstrip images (which I changed).   If someone would delete themes they weren't using they'd end up with broken links.
Thanks for notifying - this has already been fixed in the dev branch of the cvs and will be done correctly in the next version.
GauGau
			
 
			
			
				np.  glad my inability to let a small irritation drop turned into something that will help others down the road.
:-0