nynaeve
Not New Member
Posts: 19
nynaeve said 0 great things
|
Post by nynaeve on Mar 14, 2012 20:52:17 GMT -8
duckroll.proboards.com -test site Hey, I hope this is a super easy favor to ask of you! I'm just looking for a few minor changes to the main page and thread listing areas. Thread listing- tried and failed to find a code to remove the folder icon column. I thought I had one that removed both the message icon AND the folder icon but I must've replaced it or maybe I never really found it in the first place :P Board listing- Again, I'm wanting to remove the folder icon column. I'd also like to replace the cat title bars with different images for each. I see this all the time on other sites and somehow cant find the code for it. *I also notice in IE part of the border vanishes on the right side of the boards on home page. FF and Chrome seem to show it just fine though. I believe this started from codes in the main footer. Main page- Instead of centered, I was hoping to get the forum off to the left a bit. I thought there was more for the main page but now thats all that comes to mind so I'm gonna sneak in an info center request, sorry! :P IC - I love how it looks right now with the codes I have (they may or may not need cleaning up), the only thing I'd want to do is remove the "Total Topics: 2 - Total Posts: 2" if possible, and relocate "Your Personal Messages: 0 New: 0" to one of the side tables. I attempted to use your "info center part relocator" code but I couldn't get it to show up in the side table. I really really hope all of that is easy to code because I'm sure all of you are always swamped! Thanks so much in advance :)
|
|
|
Post by Wormopolis on Mar 14, 2012 23:02:43 GMT -8
duckroll.proboards.com -test site Hey, I hope this is a super easy favor to ask of you! I'm just looking for a few minor changes to the main page and thread listing areas. Thread listing- tried and failed to find a code to remove the folder icon column. I thought I had one that removed both the message icon AND the folder icon but I must've replaced it or maybe I never really found it in the first place :P look on PBS code database for "remove on/off" those folder images are referred to as "on/off" images I cant find that code myself, but if you move the above remove on/off code into global footer, it might work. or it might just need a small mod to make it work typically people just put UBBC images in for the category names. yeah the codes that remove columns never take into account that the head rows have a colspan. and the ones that do change the board cell to be 3 wide. but IE doesnt like that. find these lines TD .style.display ="none"; TD[i+1].style.display ="none"; TD[i-1].colSpan = '3';
change to
TD.style.display ="none"; TD[i+1].style.display ="none"; TD.parentNode.parentNode.parentNode.rows[1].cells[0].colSpan = '3';
see what that does. Im thinking the cat splitter might need a small change as well but lets see what happens first
edit this code
<script type="text/javascript"> <!-- var fWidth = '50%';
var table = document.getElementsByTagName('table'); for(t=0; t<table.length; t++) { if(table.item(t).width == "92%") { table.item(t).width = fWidth; table[t].style.marginLeft='100px'; } } // --> </script>
add the red
I would need to see how you used the IC relocate code. relocate doesnt necessarily mean remove, so it would still be in the IC as well
|
|
|
Post by Wormopolis on Mar 14, 2012 23:04:15 GMT -8
and I just gave myself an idea on how to upgrade the quote remodel...
|
|
nynaeve
Not New Member
Posts: 19
nynaeve said 0 great things
|
Post by nynaeve on Mar 16, 2012 19:50:12 GMT -8
Sorry, I didn't realize I had this in the wrong board! look on PBS code database for "remove on/off" those folder images are referred to as "on/off" images I cant find that code myself, but if you move the above remove on/off code into global footer, it might work. or it might just need a small mod to make it work I found that code, placed in global footer, didn't work. Placed back in main footer, worked fine for the main page, but leaves the on/off icons inside boards still there. I also found a separate code that works on the sub-boards on/off icons (left it in my source in case you wanted to check it) but couldn't get that one to work anywhere; top, mid, or bottom of global footers. We can consider this one resolved though if you'd like, I think I can work around the icons inside the board; upload a different image for them or something :) Replaced and edited those parts :) border now fully shows in IE, but IE doesn't read the forum align left Ok, I went ahead and placed the IC code above the others I have. I tried the box2div in the right side tables (inside and outside of an html table in case that magically worked lol :P ) but I can't get it to show up. If it's not too much trouble, I was hoping we could break the box1div and box2 contents up so that I can remove/hide only the total topics/total posts and (box2) clone only the personal messages? I hope that made sense :D Thanks so much for all of this!
|
|
Meme
Not New Member
Posts: 24
Meme said 0 great things
|
Post by Meme on Mar 16, 2012 22:03:53 GMT -8
This probably doesn't help at all, because I really don't have that great of knowledge of the more intricate codes, but when I use pixels instead of percentages I seem to match things up much better.
|
|
|
Post by Wormopolis on Mar 17, 2012 2:11:28 GMT -8
Sorry, I didn't realize I had this in the wrong board! no worries. it just seemed to fit better in here since it wasnt really a request for a new code. put the one that works for main page into the global footer. I think I can make it work on sub-boards. I want to see if it affects anythign else. I need tolay around with IE then to see what CSS it wants. I was hoping that one was cross browser. the problem here is your peekaboo tables are at the very bottom of the global footer. since the IC parts relocate is running before them, it doesnt see the Box2Div you have in there because it doesnt exist yet. you will need to move the IC parts relocate below peekaboo tables in order for it to see the div. and remember, it wont be dynamic because it cant fetch data prom the main page when not ON the main page. it will put what it last saw in there on other pages. not a problem. I do what I can with the time I have. This probably doesn't help at all, because I really don't have that great of knowledge of the more intricate codes, but when I use pixels instead of percentages I seem to match things up much better. which works unless you are trying to make things look right on different display resolutions. my laptop screen is a different pixel width then my PC. so if I use pixels, the tables are really skinny on the PC compared to the laptop. This site actually has an option in your modify profile that lets you choose how skinny you want to see the boards.
|
|
nynaeve
Not New Member
Posts: 19
nynaeve said 0 great things
|
Post by nynaeve on Mar 17, 2012 12:35:19 GMT -8
put the one that works for main page into the global footer. I think I can make it work on sub-boards. I want to see if it affects anythign else. Its now in the global footer, I went ahead and removed the one that was suppose to work on sub-boards. K ty! That definitely makes sense, I'm a dummy ;D This probably doesn't help at all, because I really don't have that great of knowledge of the more intricate codes, but when I use pixels instead of percentages I seem to match things up much better. Yeah, I typically try to play with percentages because sometimes I mess with it from my work computer which has a much smaller pixel width (which is honestly the only reason I realized it would even make a difference ^.^) Thanks though Meme!
|
|
|
Post by Wormopolis on Mar 18, 2012 21:05:04 GMT -8
hmm.. not the same code I thought you were going to put in GF. It should be called "remove on/off" cell
|
|
nynaeve
Not New Member
Posts: 19
nynaeve said 0 great things
|
Post by nynaeve on Mar 19, 2012 6:52:13 GMT -8
|
|
|
Post by Wormopolis on Mar 19, 2012 19:41:15 GMT -8
|
|
nynaeve
Not New Member
Posts: 19
nynaeve said 0 great things
|
Post by nynaeve on Mar 19, 2012 21:51:20 GMT -8
Yep, that's the one I have in there It's directly above/before the peekaboo side tables
|
|
|
Post by Wormopolis on Mar 20, 2012 22:03:00 GMT -8
weird.. I dont know why I couldnt see that the first time
change this line
if(TD[t].width == '8%' && TD[t].className == 'windowbg')
to this
if(TD[t].width.match(/(4|5)%/) && TD[t].className == 'windowbg')
|
|
nynaeve
Not New Member
Posts: 19
nynaeve said 0 great things
|
Post by nynaeve on Mar 21, 2012 13:13:55 GMT -8
weird.. I dont know why I couldnt see that the first time change this line if(TD[t].width == '8%' && TD[t].className == 'windowbg') to this if(TD[t].width.match(/(4|5)%/) && TD[t].className == 'windowbg') Replaced on/off icons don't show on main page, but are still on the sub-boards
|
|
|
Post by Wormopolis on Mar 21, 2012 19:51:16 GMT -8
alright.. try this then
if(TD[t].width.match(/(4|5|8)%/) && TD[t].className == 'windowbg')
|
|
nynaeve
Not New Member
Posts: 19
nynaeve said 0 great things
|
Post by nynaeve on Mar 22, 2012 7:22:17 GMT -8
Uh oh! It worked but some column/cells on the right side within the boards and sub-boards are blacked out and it's replaced thread titles with the author's name. I also tried moving it above other codes just in case, but it's back to right before the side table code
|
|