 | |  | | | Classifieds Bug Reports Post any problems you may be having with Classifieds here. |
December 16th, 2004, 10:02 PM
|
#1 (permalink)
| | Member Verified Customer
Join Date: Dec 2004
Posts: 230
| Admin menu
Maybe its just my computer or my eyes, but I am having trouble with the background color on the admin menu. I looked at the frame code and thought that it would be the "tddetails" color on the default.css, but when I changed it, the menu did not change. Where do I go to change that color?
Thanks
|
| |
December 17th, 2004, 11:02 AM
|
#2 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,685
|
what integration you using?
|
| |
December 17th, 2004, 08:22 PM
|
#3 (permalink)
| | Member Verified Customer
Join Date: Dec 2004
Posts: 230
|
I take it your asking me if I am using IE 6?
|
| |
December 17th, 2004, 09:43 PM
|
#4 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,685
|
No what Intergration. Internal or are you integrating with a forum?
Your style would depend cause if your using an external forum you could be using the forum stylesheet and not ours.
|
| |
December 17th, 2004, 10:22 PM
|
#5 (permalink)
| | Member Verified Customer
Join Date: Dec 2004
Posts: 230
|
Mmmm... OK, I'm integrating with ubb threads.
|
| |
December 18th, 2004, 01:54 PM
|
#6 (permalink)
| | Member Verified Customer
Join Date: Dec 2004
Posts: 230
|
Just so's you know, you were right. It is using the forum stylesheet, the problem was compounded because the ubbthreads stylesheet does not have an entry for "tddetails". I have added it, and now have control!... |
| |
December 18th, 2004, 02:01 PM
|
#7 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,685
|
I think the correct thing would do is is edit the threads.php file in your forums directory of Photopost and make the style class calls this
//
// Style references
//
if ( $Globals['forumstyle'] == "yes" ) {
$Style['onbody'] = "forumdescript";
$Style['tableborders'] = "tableborders";
$Style['tablesurround'] = "tablesurround";
$Style['tddetails'] = "darktable";
$Style['tdbackground'] = "darktable";
$Style['tdnothumbs'] = "tdheader";
$Style['menubar'] = "menubar";
$Style['menubarnb'] = "";
$Style['catcolumn'] = "darktable";
$Style['photocol'] = "lighttable";
$Style['commentscol'] = "darktable";
$Style['lastphocol'] = "darktable";
$Style['lastcommcol'] = "lighttable";
$Style['small'] = "small";
$Style['medium'] = "font-size: 10pt;";
$Style['large'] = "font-size: 11pt;";
$Style['welcome'] = "forumdescript";
$Style['lighttable'] = "lighttable";
$Style['alternatetable'] = "darktable";
$Style['formboxes'] = "formboxes";
$Style['blockquote'] = "blockquote";
}
Alternatetable was dropped for 6.5 and we now assign that to darktable
|
| |
December 19th, 2004, 10:34 AM
|
#8 (permalink)
| | Member Verified Customer
Join Date: Dec 2004
Posts: 230
|
just had a look at my threads.php and it is configured as you suggest. I tried changing the "darktable" to "lighttable" and it seems to be staying at the default color that I cannot see. I will look at it a bit more.
|
| |
December 19th, 2004, 10:37 AM
|
#9 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,685
|
Okay too much egg nog
In your adm-inc.php file change the threads style calls to what I stated
|
| |
December 19th, 2004, 12:11 PM
|
#10 (permalink)
| | Member Verified Customer
Join Date: Dec 2004
Posts: 230
|
Sorry to be problematic, and appreciate your assistance!
But, I have just changed the the adm-inc. as you suggest, but it doesn't seem to do the job.
|
| |
December 19th, 2004, 12:34 PM
|
#11 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,685
|
well in the original adm-inc.php the threads styles where this
$Style['onbody'] = "forumdescript";
$Style['tableborders'] = "tableborders";
$Style['tablesurround'] = "tablesurround";
$Style['tddetails'] = "tddetails";
$Style['tdbackground'] = "darktable";
$Style['tdnothumbs'] = "tdheader";
$Style['menubar'] = "menubar";
$Style['menubarnb'] = "";
$Style['catcolumn'] = "darktable";
$Style['photocol'] = "lighttable";
$Style['commentscol'] = "darktable";
$Style['lastphocol'] = "darktable";
$Style['lastcommcol'] = "lighttable";
$Style['small'] = "small";
$Style['medium'] = "font-size: 10pt;";
$Style['large'] = "font-size: 11pt;";
$Style['welcome'] = "forumdescript";
$Style['lighttable'] = "lighttable";
$Style['alternatetable'] = "alternatetable";
$Style['formboxes'] = "formboxes";
$Style['blockquote'] = "blockquote";
I suggested changing them to this
$Style['onbody'] = "forumdescript";
$Style['tableborders'] = "tableborders";
$Style['tablesurround'] = "tablesurround";
$Style['tddetails'] = "darktable";
$Style['tdbackground'] = "darktable";
$Style['tdnothumbs'] = "tdheader";
$Style['menubar'] = "menubar";
$Style['menubarnb'] = "";
$Style['catcolumn'] = "darktable";
$Style['photocol'] = "lighttable";
$Style['commentscol'] = "darktable";
$Style['lastphocol'] = "darktable";
$Style['lastcommcol'] = "lighttable";
$Style['small'] = "small";
$Style['medium'] = "font-size: 10pt;";
$Style['large'] = "font-size: 11pt;";
$Style['welcome'] = "forumdescript";
$Style['lighttable'] = "lighttable";
$Style['alternatetable'] = "darktable";
$Style['formboxes'] = "formboxes";
$Style['blockquote'] = "blockquote";
It most definately works as this is what I am using
|
| |
December 19th, 2004, 01:14 PM
|
#12 (permalink)
| | Member Verified Customer
Join Date: Dec 2004
Posts: 230
|
Somebody beat us to it! That is the way the original adm-inc.php is in the copy I have downloaded.
$Style['tddetails'] = "darktable";
$Style['alternatetable'] = "darktable";
I notice that when I look at the source code for the admin menu, and the main admin, they seem to refer directly to the forum style sheet.
<link rel="stylesheet" href="http://www.teambuick.com/forum/stylesheets/infopop.css" type="text/css" />
Last edited by rcull; December 20th, 2004 at 09:41 AM.
|
| |
December 20th, 2004, 09:56 AM
|
#13 (permalink)
| | Member Verified Customer
Join Date: Dec 2004
Posts: 230
|
When changing the choice of stylesheet in the edit options list, the admin menu does not change styles only the rest of the pages.
|
| |
December 20th, 2004, 10:26 AM
|
#14 (permalink)
| | Member Verified Customer
Join Date: Dec 2004
Posts: 230
|
The color conflict is occurrin with #666699 being the color for the admin menu background and the visited link.
|
| |
December 20th, 2004, 10:42 AM
|
#15 (permalink)
| | Photopost Developer Verified Customer
Join Date: Jun 2002 Location: Abingdon,MD
Posts: 71,685
|
Rcull
I use UBBThreads and things are fine if I use what I posted.
If your want to use Forum stylesheet integration you must turn it on in the admin options.
|
| |
December 20th, 2004, 10:54 AM
|
#16 (permalink)
| | Member Verified Customer
Join Date: Dec 2004
Posts: 230
|
OOOOOOOooooooo..........
Thanks for pointing that out, I was sure it was on! That has fixed it all up...  I admit I am an idiot, but I keep trying....
Put a little extra rum in that eggnog, you probably need it and do deserve it!
Thanks,
Bob
Problems are so simple once solved.
|
| | |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | | | | Thread Tools | | | | Display Modes | Rate This Thread | Linear Mode | |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | All times are GMT -5. The time now is 09:05 AM. | |