Author |
Message |
jakec
Site Admin
Joined: Feb 06, 2006
Posts: 3048
Location: United Kingdom
|
Posted:
Thu Aug 21, 2008 10:44 am |
|
I'm getting some odd things happening over at NukeCSS, overlapping of the modules on the right with blocks on the left. This is using IE6.
Sorry just realised I am going |
|
|
|
|
wHiTeHaT
Life Cycles Becoming CPU Cycles
Joined: Jul 18, 2004
Posts: 579
|
Posted:
Thu Aug 21, 2008 11:17 am |
|
Only registered users can see links on this board! Get registered or login! |
|
|
|
|
jakec
|
Posted:
Thu Aug 21, 2008 12:44 pm |
|
I've just split this from the Portalthemes topic so we don't get Off Topic.
As I mentioned in the other post this was on my work PC where I don't have a choice of browser. I believe quite a few companies still use IE6.
At home on IE7 and FF 2 it is looking good. |
|
|
|
|
wHiTeHaT
|
Posted:
Thu Aug 21, 2008 1:47 pm |
|
i was able to see your problem with ie6 true browsershots
[images removed]
[EDIT]Sorry i better can take out the images i added before couse they will only stay availeble for 30 minutes |
|
|
|
|
Susann
Moderator
Joined: Dec 19, 2004
Posts: 3191
Location: Germany:Moderator German NukeSentinel Support
|
Posted:
Thu Aug 21, 2008 3:43 pm |
|
Will try it out as soon as I can find some time. I have read your thoughts about RavenNuke just a warning
Beneed this I believe there isn´t a perfect CSS theme available. The have all small problems here and there and of course you always need to test with different browsers. Themes are a time consuming job nothing for me. |
Last edited by Susann on Thu Aug 21, 2008 3:50 pm; edited 1 time in total |
|
|
|
wHiTeHaT
|
Posted:
Thu Aug 21, 2008 3:49 pm |
|
Mein sehr ge-ertes fraulein , ihre warnung werde ich mir zür gedanken nehmen.
Hoffentlich wird nicht meinen schlaf enthalten werden , doch die gedanke welches fraulein dahinter steckt , kan schon schlaf enthalted sein
Héheé
Grtzzz wHiTeHaT |
|
|
|
|
Susann
|
Posted:
Thu Aug 21, 2008 3:52 pm |
|
He,he Susann entgeht nichts. Das nur als kleine Warnung. |
|
|
|
|
Susann
|
Posted:
Fri Aug 22, 2008 12:08 pm |
|
Looks good but I found similar issues with other CSS themes I have tested in the past.
Some of the titles within the block downloads have now new spaces which wasn´t a problem before. These are small issues and I believe you can solve this easily. |
|
|
|
|
wHiTeHaT
|
Posted:
Fri Aug 22, 2008 1:19 pm |
|
i checked your site and seen what you mean.
The "problem" is couse of the un-used css.
you could replace your block-Top10_Downloads.php
with:
Code:if ( !defined('BLOCK_FILE') ) {
Header('Location: ../index.php');
die();
}
global $prefix, $db;
$content = '';
$content = '<ul class="links">';
$n = 1;
$result = $db->sql_query('SELECT lid, title FROM '.$prefix.'_downloads_downloads ORDER BY hits DESC LIMIT 0,10');
while (list($lid, $title) = $db->sql_fetchrow($result)) {
$lid = intval($lid);
$title2 = htmlspecialchars(str_replace('_', ' ', $title), ENT_QUOTES, _CHARSET);
$content .= '<strong><big>·</big></strong> '.$n.
': <li><a href="modules.php?name=Downloads&d_op=viewdownloaddetails&lid='.$lid.'">'.$title2.'</a></li>';
++$n;
}
$content = '</ul>';
|
Be aware this is just for the nonzero_blue theme.
You must understand that the problems arent inside the css themes but in the nuke code.
There arent any css references to follow , there's no guideline.
For example the content of "a block" schould contain a divider class , in this case something like <div class=downloads block> $content</div>and the good css would be something like:
Code:
.downloads {color:#ff0000;background:transparent;}
.module{text-align:center;}
.blockx{text-align:right;}
|
And then anywhere where you wish to use the Multiple CSS Classes you can do this...
Code:
<div class="downloads blockx" >all $content related to block X</div>
<div class="downloads module" >All default downloads module content </div>
|
|
Last edited by wHiTeHaT on Fri Aug 22, 2008 1:57 pm; edited 1 time in total |
|
|
|
Susann
|
Posted:
Fri Aug 22, 2008 1:56 pm |
|
You can register at skin-up.de I uploaded two themes there.Nonzero_blue and theme Underground.
I use there the latest release of RavenNuke.
Only with h Nonzero_blue I have this space problem. There are some other small issues. I just don´t have the time currently to look deeper into this.But I´m thinking about to use Underground for my other site. |
Last edited by Susann on Fri Aug 22, 2008 2:00 pm; edited 2 times in total |
|
|
|
wHiTeHaT
|
Posted:
Fri Aug 22, 2008 1:58 pm |
|
i just edited previous message, i dont now if you where getting notifeid |
|
|
|
|
wHiTeHaT
|
Posted:
Fri Aug 22, 2008 2:01 pm |
|
you should also install the theme cp panel if you want to use the upper navigation menu for all themes
Grtzz wHiTeHaT |
|
|
|
|
Susann
|
Posted:
Fri Aug 22, 2008 2:18 pm |
|
Where is the cp panel ?
Did you saw my forums block within the downloads ?
I would also need to create a new forums block because this block was created to work with fisubice and DeepBlue. |
|
|
|
|
wHiTeHaT
|
Posted:
Fri Aug 22, 2008 2:20 pm |
|
|
|
|
Susann
|
Posted:
Fri Aug 22, 2008 2:30 pm |
|
Got it thanks ! Will try it first with an other testsite. |
|
|
|
|
kguske
Site Admin
Joined: Jun 04, 2004
Posts: 6437
|
Posted:
Fri Aug 22, 2008 6:32 pm |
|
I really like Underground - nice work, wHiTeHaT! The other themes are nice, too. |
_________________ I search, therefore I exist...
Only registered users can see links on this board! Get registered or login! |
|
|
|
wHiTeHaT
|
Posted:
Sat Aug 23, 2008 5:03 pm |
|
Thank you , but i must tell, this is an excisting xhtml template made bby styleshout.
I only ported it for nuke.
Styleshout created several verry nice templates what i could port over to nuke.
There's also aloth other templates to find on freecsstemplates.org , made by good design artists, what could be usefull for the nuke community.
As there's so much choice i made an anouncement on nukecss where people can do some template requests.
However to give all css template's the credits they deserve , aloth need to be changed in the nuke distro's.
But if folow xhtml/css rules in combination with good sourcecode , it shouldnt be a problem.
Common XHTML Elements
For example:
-Texts and Images
-Lists (ordered and un-ordered)
-Blockquote
-Headings
-Tables
-Forms
-check's radio's and options
-Buttons
-content and colum placeholders
Grtzz wHiTeHaT |
|
|
|
|
jakec
|
Posted:
Sun Aug 24, 2008 3:03 am |
|
|
|
|
wHiTeHaT
|
Posted:
Sun Aug 24, 2008 3:11 am |
|
seems to not open here...
[EDIT] posseblemy isp refreshed dns...workingnow[/EDIT]
but there's also:
http://www.oswd.org/ |
Last edited by wHiTeHaT on Sun Aug 24, 2008 5:49 am; edited 1 time in total |
|
|
|
jakec
|
Posted:
Sun Aug 24, 2008 3:18 am |
|
Seems to be working OK for me. |
|
|
|
|
|