Deleted
Posts: 0
Deleted said great things
|
Post by Deleted on May 17, 2011 2:03:45 GMT -8
Sorry mate i dont get what you mean
|
|
|
Post by Wormopolis on May 17, 2011 2:07:27 GMT -8
ok to get your horizontal line those 2 lines need to change again... theStuff+="<tr><td class='TL_threadEntry'><a href='"+linktemp+"'>"+ TL_title_array[tl] +"</a> | " + TL_date_array[tl] +"</td></tr>"; then in the CSS change the TL_threadEntry to this: .TL_threadEntry {border-top: #ffffff 1px solid;}
|
|
Deleted
Posts: 0
Deleted said great things
|
Post by Deleted on May 17, 2011 2:14:03 GMT -8
Sorry where you looking
the .TL_threadEntry {border-top: #ffffff 1px solid;}
has been added to the css
|
|
|
Post by Wormopolis on May 17, 2011 2:40:03 GMT -8
the first part. see where it says class='TL_threadEntry' in your h/f? move it from being in the <a> tag to the <td> tag
|
|
Deleted
Posts: 0
Deleted said great things
|
Post by Deleted on May 17, 2011 2:45:42 GMT -8
Can you post me a bigger section of the code im still no clearer on where im looking or what i need to change
|
|
|
Post by Wormopolis on May 17, 2011 3:26:52 GMT -8
there are 2 lines:
theStuff+="<tr><td><a class='TL_threadEntry' href='"+linktemp+"'>"+ TL_title_array[tl] +"</a> | " + TL_date_array[tl] +"</td></tr>";
the class in red needs to be moved to the td cell
|
|
Deleted
Posts: 0
Deleted said great things
|
Post by Deleted on May 17, 2011 3:29:29 GMT -8
Ahhh now i get you sorry told you i was useless with coding lol Done
|
|
|
Post by Wormopolis on May 17, 2011 6:39:33 GMT -8
theStuff+="<tr>class='TL_threadEntry'<td><a href='"+linktemp+"'>"+ TL_title_array[tl] +"</a> | " + TL_date_array[tl] +"</td></tr>";
not quite
theStuff+="<tr><td class='TL_threadEntry'><a href='"+linktemp+"'>"+ TL_title_array[tl] +"</a> | " + TL_date_array[tl] +"</td></tr>";
and there are TWO lines that need to change remember
|
|
Deleted
Posts: 0
Deleted said great things
|
Post by Deleted on May 17, 2011 13:47:09 GMT -8
Done The line is now above the thread title and the time
|
|