forum.coppermine-gallery.net

Support => Older/other versions => cpg1.2 Standalone Support => Topic started by: Artdroid on March 01, 2004, 01:17:16 am

Title: Something "else" i'm trying to find the control fo
Post by: Artdroid on March 01, 2004, 01:17:16 am
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
Title: Something "else" i'm trying to find the control fo
Post by: Casper on March 01, 2004, 11:54:16 am
Try your template.html.

look for (in default theme)
Code: [Select]
<td valign="top" bordercolor="#666666" bgcolor="#FFFFFF" style="border: 1px solid;">
Title: Something "else" i'm trying to find the control fo
Post by: Artdroid on March 01, 2004, 04:12:08 pm
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.
Title: Something "else" i'm trying to find the control fo
Post by: moorey on March 01, 2004, 04:23:06 pm
Viewing your source code, you have no border tag set. For example:
Quote
<table width="100%" height="100%" cellspacing="0" cellpadding="0">
Title: Something "else" i'm trying to find the control fo
Post by: Artdroid on March 01, 2004, 09:43:51 pm
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.
Title: Something "else" i'm trying to find the control fo
Post by: moorey on March 02, 2004, 03:25:30 am
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.
Title: Something "else" i'm trying to find the control fo
Post by: Artdroid on March 02, 2004, 03:33:14 pm
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.
Title: Something "else" i'm trying to find the control fo
Post by: Artdroid on March 02, 2004, 04:21:36 pm
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.
Title: Something "else" i'm trying to find the control fo
Post by: Joachim Müller on March 02, 2004, 07:19:38 pm
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
Title: Something "else" i'm trying to find the control fo
Post by: Artdroid on March 03, 2004, 02:12:48 am
np.  glad my inability to let a small irritation drop turned into something that will help others down the road.

:-0