|
Post by tunescool on Apr 9, 2013 18:34:58 GMT -8
i added $[post.thread.link] and just like 4.5 the title goes to the next line and it doesnt matter what length it is but the end of alot of titles look like this could you do the same for v5 as you did in 4.5. i just added this to footers and it took care of the second problem but the long ones still go to a new row <script type="text/javascript"> // Post Title Cell Expand for (tds=document.getElementsByTagName('td'), t=0; t<tds.length; t++) { if (tds[t].width=='55%' && tds[t].vAlign=='middle' && tds[t].align=='left') { if (tds[t].nextSibling.width=='40%') { tds[t].width='75%'; tds[t].nextSibling.width='20%'; //these 2 must add to 95% } } } </script>
|
|
|
Post by Wormopolis on Apr 9, 2013 21:00:33 GMT -8
surround it with a div tag:
<div style="width:100%">$[post.thread.link]</div>
see what that does
|
|
|
Post by tunescool on Apr 10, 2013 0:43:21 GMT -8
i have this but its the same
<div class="thread-link" style="width:100%; display: block; font-size:14px; font-weight:bold; font-style:italic; padding-left:35px;">$[post.thread.subject]</div>
|
|
|
Post by Wormopolis on Apr 18, 2013 23:18:57 GMT -8
ok link me to a thread because every single one I have checked are on one line...
|
|
|
Post by tunescool on Apr 19, 2013 0:06:11 GMT -8
|
|
|
Post by Wormopolis on Apr 19, 2013 13:35:29 GMT -8
whats this about?
* { max-height: 1000000px; }
anyways... that div IS going to 100%, but the div its inside is only filling a certain width. something I just saw however:
.posts .post .content .thread-link { max-width: 450px; overflow: hidden; }
increase that number
|
|
|
Post by tunescool on Apr 19, 2013 14:00:55 GMT -8
that worked, thanks wormer
i didnt see this anywhere, is it near the Posts section
* { max-height: 1000000px; }
|
|
|
Post by Wormopolis on Apr 20, 2013 21:44:36 GMT -8
not sure.. I just saw it when I was looking through your CSS. maybe its supposed to be in there? not really hurting anything...
|
|
|
Post by tunescool on Apr 26, 2013 3:29:24 GMT -8
im having this problem again at the end. when i first added the title putting that code you made in footers corrected it but now its back again the 2 in 2012 is half gone thenotablenook.com/thread/16075<script type="text/javascript"> // Post Title Cell Expand for (tds=document.getElementsByTagName('td'), t=0; t<tds.length; t++) { if (tds[t].width=='55%' && tds[t].vAlign=='middle' && tds[t].align=='left') { if (tds[t].nextSibling.width=='40%') { tds[t].width='90%'; tds[t].nextSibling.width='5%'; //these 2 must add to 95% } } } </script>
|
|
|
Post by Wormopolis on Apr 27, 2013 16:18:04 GMT -8
I dont think that footer code is going to do anything on a v5 forum... the CSS I gave you earlier should be the way to go.
|
|
|
Post by tunescool on Apr 27, 2013 18:50:09 GMT -8
that code i posted corrected that problem in v5, i put it in while i was making the first post, and posted that it helped the problem i just posted about in my last post. i dont remember the order of what happened and when the problem came back but it is.
i already changed the css you gave me and it corrected the other problem, the thread title going to 2 lines. but this problem is there again
is there additional css to add to the css you gave because i dont know
|
|
|
Post by Wormopolis on Apr 28, 2013 15:05:08 GMT -8
where you changed the max-width, remove the "overflow:hidden" from below it
|
|
|
Post by tunescool on Apr 28, 2013 17:57:56 GMT -8
that was it, thanks
|
|
|
Post by tunescool on Apr 30, 2013 10:12:30 GMT -8
i do alot of copying and pasting thread titles to my archives or getting info from google or whatever. thread titles dont copy the same in v5, i made a pic explaining, heres a link if you want to try it out. i just double click but in the forums where theres names i just drag and copy can anything be done thenotablenook.com/thread/24945/page/1/winona-ryder-iceman-york-screening
|
|
|
Post by Wormopolis on May 1, 2013 19:42:13 GMT -8
because those button are floated over to the right, the browser just displays them there. they actually exist right next to the thread title. if you start to drag from the right side of the title, but beyond the actual text box its in, it will pick up the buttons from the right side as well.
nothing can be done to change this behaviour
|
|