Author |
Message |
FosgateElite
Regular
![Regular Regular](modules/Forums/images/ranks/2stars.gif)
![](modules/Forums/images/avatars/Misc/boyandpc.gif)
Joined: Mar 26, 2006
Posts: 63
|
Posted:
Fri Apr 24, 2009 10:24 pm |
|
Not sure where to start with this one. Where can I force the mouseover text to black. Also how can I limit the number of feeds that come up in the box?
I just placed the feed URL in the url box and nothing more. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
FosgateElite
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Apr 24, 2009 10:33 pm |
|
Forget the limit number of feeds part, that was my dumb mistake for not reading closer.
I still need to find out how to change the text to another color. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spasticdonkey
RavenNuke(tm) Development Team
![](modules/Forums/images/avatars/48fb116845dfecf66294c.gif)
Joined: Dec 02, 2006
Posts: 1693
Location: Texas, USA
|
Posted:
Fri Apr 24, 2009 10:40 pm |
|
html/includes/nukeSEO/nukePIE.css |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
FosgateElite
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Fri Apr 24, 2009 10:52 pm |
|
Awesome. That sorta worked. Some of the feeds are coming through with the text color I specified, but some still come through as white. Like the feed is ignoring the css file. |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spasticdonkey
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Apr 25, 2009 1:15 am |
|
this is a script that is run in your browser, so the issue is probably there... since it's a javascript using the css your browser may have cached it, so you may get old appearance..... try clearing your browser temporary files, or open in another browser and see what happens ![Smile](modules/Forums/images/smiles/icon_smile.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
FosgateElite
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sat Apr 25, 2009 11:00 am |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spasticdonkey
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Apr 26, 2009 7:45 am |
|
without seeing what's going on it's hard to say... you got a link to the abnormal behavior? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
FosgateElite
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Sun Apr 26, 2009 6:19 pm |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spasticdonkey
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Apr 27, 2009 2:36 am |
|
ok it's doing what you said for me too
looks like it may be theme related, the content in the feed block is wrapped with these tags:
Code:<h6><span class="storytitle style1"><font face="Verdana" size="1"><span class="storytitle style1 style1"><font class="sf"><font class="content">
|
that's alot of style and classes, it probably needs some cleanup and could be causing the appearance issues. I suggest checking the site for validation errors, fixing them would probably correct the problem.. (tidy html validator for firefox) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
mars
Worker
![Worker Worker](modules/Forums/images/ranks/3stars.gif)
![](modules/Forums/images/avatars/gallery/blank.gif)
Joined: Jul 08, 2006
Posts: 123
Location: Bloomsburg,Pennsylvania
|
Posted:
Mon Apr 27, 2009 4:51 am |
|
Edit nukepie.css and make it this
Code:
.nukePIEhdr {
padding:5px;
font-weight:bold;
border:1px solid #C9D255;
background:#5F6B77;
color:#DADDE2;
width:600px;
}
.nukePIEbody {
padding:5px;
border:1px solid #C9D255;
background:#DADDE2;
color:#5F6B77;
width:600px;
}
.nukePIEbody p{
background:#DADDE2;
color:#5F6B77;
width:600px;
}
|
Basically just add that last style. |
_________________ Only registered users can see links on this board! Get registered or login! |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
FosgateElite
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Apr 27, 2009 10:49 am |
|
How about turning off the mouse over entirely? |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
spasticdonkey
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Mon Apr 27, 2009 6:39 pm |
|
yes you can disable in rnconfig.php
$useBoxoverWithnukePIE = false; |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
FosgateElite
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Tue Apr 28, 2009 6:57 pm |
|
spasticdonkey wrote: | yes you can disable in rnconfig.php
$useBoxoverWithnukePIE = false; |
Great! thanks! |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
kguske
Site Admin
![](modules/Forums/images/avatars/41f0b40a419280935f3a0.gif)
Joined: Jun 04, 2004
Posts: 6437
|
Posted:
Wed Apr 29, 2009 10:07 pm |
|
spasticdonkey, mars, thanks for the excellent assistance on this! I back to working on code... |
_________________ I search, therefore I exist...
Only registered users can see links on this board! Get registered or login! |
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
mars
![](modules/Forums/images/avatars/gallery/blank.gif)
|
Posted:
Thu Apr 30, 2009 11:47 am |
|
Always glad to help where I can ![Smile](modules/Forums/images/smiles/icon_smile.gif) |
|
|
|
![](themes/RavenIce/forums/images/spacer.gif) |
|