| Author |
Message |
jcstauring

Joined: Dec 16, 2008
Posts: 8
|
Posted:
Sun Jan 11, 2009 11:06 am |
|
Hello
My installation is RavenNuke 2.30.
Using MidTown, when viewing Private Messages. The left modules are visible and on top of any Private Message you may have.
Any idea on how to fix this is appreciated!
Regards,
jc |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 921
|
Posted:
Sun Jan 11, 2009 12:39 pm |
|
Can you post a screenshot so I can see what you mean?
With the css themes, problems like this usually come from blocks or modules that have errors in the html output. If you use firefox, you can download a plugin called "HTML Validator" and it will show you the html errors when you view the source. If you do see any errors from that plugin, let me know what they are and I can try to help you fix it. |
| |
|
|
 |
jcstauring

Joined: Dec 16, 2008
Posts: 8
|
Posted:
Sun Jan 11, 2009 2:04 pm |
|
Hello,
I just had several warnings when using the firefox add on but no critical errors.
Thanks for your help!
jc |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 921
|
Posted:
Sun Jan 11, 2009 5:26 pm |
|
Warnings can be a problem too. Can you post what they are. |
| |
|
|
 |
jcstauring

Joined: Dec 16, 2008
Posts: 8
|
Posted:
Sun Jan 11, 2009 7:15 pm |
|
These are the warnings copied from the ad-on:
| Quote: |
line 740 column 50 - Warning: <marquee> is not approved by W3C
line 740 column 207 - Warning: inserting implicit <marquee>
line 740 column 259 - Warning: <img> element not empty or not closed
line 740 column 495 - Warning: <img> element not empty or not closed
line 740 column 741 - Warning: <img> element not empty or not closed
line 740 column 1038 - Warning: <img> element not empty or not closed
line 740 column 1335 - Warning: <img> element not empty or not closed
line 740 column 1594 - Warning: <img> element not empty or not closed
line 740 column 1824 - Warning: <img> element not empty or not closed
line 740 column 2069 - Warning: <img> element not empty or not closed
line 740 column 2361 - Warning: <img> element not empty or not closed
line 740 column 2825 - Warning: inserting implicit <p>
line 740 column 199 - Warning: missing </center>
line 758 column 91 - Warning: <img> element not empty or not closed
line 758 column 237 - Warning: <img> element not empty or not closed
line 758 column 451 - Warning: <img> element not empty or not closed
line 758 column 636 - Warning: <img> element not empty or not closed
line 775 column 1 - Warning: <img> element not empty or not closed
line 776 column 1 - Warning: <img> element not empty or not closed
line 777 column 1 - Warning: <img> element not empty or not closed
line 778 column 1 - Warning: <img> element not empty or not closed
line 779 column 1 - Warning: <img> element not empty or not closed
line 834 column 7 - Warning: <img> element not empty or not closed
line 838 column 7 - Warning: <img> element not empty or not closed
line 842 column 7 - Warning: <img> element not empty or not closed
line 846 column 7 - Warning: <img> element not empty or not closed
line 850 column 7 - Warning: <img> element not empty or not closed
line 854 column 7 - Warning: <img> element not empty or not closed
line 858 column 7 - Warning: <img> element not empty or not closed
line 862 column 7 - Warning: <img> element not empty or not closed
line 894 column 54 - Warning: <img> element not empty or not closed
line 740 column 50 - Warning: trimming empty <marquee>
line 740 column 2825 - Warning: trimming empty <p>
|
Thanks for your help!
jc |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 921
|
Posted:
Sun Jan 11, 2009 10:43 pm |
|
Ok, after further investigation, I have found the problem. To fix, open up your theme.php and find..
| php: |
global $forums_showblocks;
if ($module_name == 'Forums' && $forums_showblocks === false)
{
|
Change to:
| php: |
global $forums_showblocks, $name;
if ($name == 'Forums' && $forums_showblocks === false)
{
|
|
| |
|
|
 |
jcstauring

Joined: Dec 16, 2008
Posts: 8
|
Posted:
Mon Jan 12, 2009 3:23 am |
|
Thank you Gotcha! that did work and fix the alignment problem
I did run in to another problem which was getting the following error whem sending PM:
| Quote: |
| Template->make_filename(): Error - file posting_attach_body.tpl does not exist |
Also my "Add an Attachment" feature was not working.
To fix I uploaded .tpl copied files from a Raven theme (fisubice) to:
Midtown/forums/
This did fix the problem, but I hope I don't run in to issues from using the files from another theme
Again,
Thanks Gotcha
jc |
| |
|
|
 |
gotcha
Site Admin


Joined: Oct 25, 2004
Posts: 921
|
Posted:
Mon Jan 12, 2009 9:20 am |
|
No it shouldn't cause any problems at all. The only thing to look for in the copied .tpl files are any hard coded theme names. They would just need to be changed to NC_MidTown, but I don't think there are any in those attachment files.
I found a good post on raven's site that outlines all changes needed for the attachment mod:
http://ravenphpscripts.com/postp129038.html#129038
If you need any help, just let me know. |
| |
|
|
 |
|
|