|
dr
- cute and very brutal -
| Reputation: 192 | Group: | Admin | Posts: | 17,989 | Joined: | Jun 26, 2012 |
| Post #376: 30th Dec 2014 1:31 PM | |
| d ( i n o s r o a ) r
"She essentially tore apart the Hex Girls with a simple STAT"
LUCK CREATOR | HEART HACKER | BUY GOLD BYE
|
| | |
jks
HONK HONK
| Reputation: 61 | Group: | Elite | Posts: | 2,568 | Joined: | Jul 24, 2013 |
| Post #377: 30th Dec 2014 1:43 PM | |
| |
| | |
dr
- cute and very brutal -
| Reputation: 192 | Group: | Admin | Posts: | 17,989 | Joined: | Jun 26, 2012 |
| Post #378: 30th Dec 2014 2:25 PM | |
It makes me happy that proboards is losing in its category this year | d ( i n o s r o a ) r
"She essentially tore apart the Hex Girls with a simple STAT"
LUCK CREATOR | HEART HACKER | BUY GOLD BYE
|
| | |
Curtis
First Place Dick
| Reputation: 1,170 | Group: | Admin | Posts: | 79,236 | Joined: | Jun 22, 2012 |
| Post #379: 14th Jan 2015 11:55 AM | |
Pages with embedded YouTube videos seem to be fucking up my page when viewing on my phone | |
| | |
itsbrianyay
Good morning - evening - afternoon
| Reputation: 114 | Group: | Moderator | Posts: | 19,313 | Joined: | Oct 3, 2013 |
| Post #380: 14th Jan 2015 11:57 AM | |
does it sorta load and then turn the screen blank? that was happening to me to (on safari) so i downloaded chrome and didn't have the same issue. | |
| | |
Moose
HYHOTCAMMORPGFFXIV? WAEFTWYCPTTEOARRATAWHEUTL60FFWNROP
| Reputation: 99 | Group: | Elite | Posts: | 4,871 | Joined: | Aug 7, 2014 |
| Post #381: 14th Jan 2015 11:59 AM | |
That happens to me on my phone too. It's a bit frustrating! | |
| | |
Curtis
First Place Dick
| Reputation: 1,170 | Group: | Admin | Posts: | 79,236 | Joined: | Jun 22, 2012 |
| Post #382: 14th Jan 2015 11:59 AM | |
|
does it sorta load and then turn the screen blank? that was happening to me to (on safari) so i downloaded chrome and didn't have the same issue. |
Yup! Also on Safari. Do you prefer chrome on mobile? | |
| | |
itsbrianyay
Good morning - evening - afternoon
| Reputation: 114 | Group: | Moderator | Posts: | 19,313 | Joined: | Oct 3, 2013 |
| Post #383: 14th Jan 2015 12:14 PM | |
dunno, just downloaded it yesterday, havent used it other than to check those pages that wouldn't load. | |
| | |
Korru
Shitlord
| Reputation: 33 | Group: | Elite | Posts: | 4,267 | Joined: | Jun 26, 2012 |
| Post #384: 18th Feb 2015 2:02 PM | |
I'm making a custom skin without the skin builder like a pr0, what's the name of this property so I can modify it? | |
| | |
PORL
UNFORGIVABLE
| Reputation: 153 | Group: | Admin | Posts: | 4,222 | Joined: | Jun 22, 2012 |
| Post #385: 18th Feb 2015 2:25 PM | |
You can just press F12 in most browsers and click the element to find the details.
In any case the ID is "fthreadcell".
There's no class because the skinning on NDim classic is a little weak. | |
| | |
Korru
Shitlord
| Reputation: 33 | Group: | Elite | Posts: | 4,267 | Joined: | Jun 26, 2012 |
| Post #386: 18th Feb 2015 2:42 PM | |
What a pity, is there a way to modify with a custom code since the skin is going to be the only one on the board? | |
| | |
PORL
UNFORGIVABLE
| Reputation: 153 | Group: | Admin | Posts: | 4,222 | Joined: | Jun 22, 2012 |
| Post #387: 18th Feb 2015 2:45 PM | |
|
What a pity, is there a way to modify with a custom code since the skin is going to be the only one on the board? |
Probably. I've not looked at the code for a while but I'll see if I can figure something out.
I'm pretty sure the hover colours are hard-coded, but I think with some jquery you can bypass it. NDim classic should support jquery. Pretty sure I put it in place a while back. | |
| | |
itsbrianyay
Good morning - evening - afternoon
| Reputation: 114 | Group: | Moderator | Posts: | 19,313 | Joined: | Oct 3, 2013 |
| Post #388: 18th Feb 2015 2:56 PM | |
| |
| | |
PORL
UNFORGIVABLE
| Reputation: 153 | Group: | Admin | Posts: | 4,222 | Joined: | Jun 22, 2012 |
| Post #389: 18th Feb 2015 3:02 PM | |
I wrote a hack. It'll uniformly set the hover colour of all the "fast" boxes. If you want to set the base colour you can use CSS (IDs are freplycell, fpmcell and fthreadcell).
|
<script type='text/javascript'>
//Change this to the colour you want
var myHover = '#FFFFFF';
$("[id*='fthreadcell'],[id*='fpmcell'],[id*='freplycell']").mouseover(function(){oldcol=this.style.backgroundColor;this.style.backgroundColor=myHover;this.style.cursor='pointer';});
</script>
|
Put this in the "below board" section and it should do the job.
EDIT: Screwed up slightly but this version should work if you have different base colours.
EDITEDIT: Missed a semi-colon. Fukn things.
Post Edited by PORL @ 18th Feb 2015 3:04 PM | |
| | |
PORL
UNFORGIVABLE
| Reputation: 153 | Group: | Admin | Posts: | 4,222 | Joined: | Jun 22, 2012 |
| Post #390: 18th Feb 2015 3:17 PM | |
There were some bugs with that script. Finalised:
|
<script type='text/javascript'>
//Change this to the colour you want
var myHover = '#FFFFFF';
var tcol = $("[id*='fthreadcell']")[0] ? $("[id*='fthreadcell']")[0].style.backgroundColor : $("[id*='userbarf']")[0].backgroundColor;
var pcol = $("[id*='fpmcell']")[0] ? $("[id*='fpmcell']")[0].style.backgroundColor : $("[id*='userbarf']")[0].backgroundColor;
var rcol = $("[id*='freplycell']")[0] ? $("[id*='freplycell']")[0].style.backgroundColor : $("[id*='userbarf']")[0].backgroundColor;
$("[id*='fthreadcell']").mouseover(function(){oldcol=tcol;this.style.backgroundColor=myHover;this.style.cursor='pointer';});
$("[id*='fpmcell']").mouseover(function(){oldcol=pcol;this.style.backgroundColor=myHover;this.style.cursor='pointer';});
$("[id*='freplycell']").mouseover(function(){oldcol=rcol;this.style.backgroundColor=myHover;this.style.cursor='pointer';});
</script>
|
Should work properly now.
Post Edited by PORL @ 18th Feb 2015 3:18 PM | |
| | |
2 Users Viewing (2 Guests) |
|
|