Skip to main content
Topic: Something different: recent posts at top of board index. (Read 6404 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Re: Something different: recent posts at top of board index.

Reply #15

Yeah I found it: http://addons.elkarte.net/enhancement/Recent-Topics.html

I'll take a look.
Master of Expletives: Now with improved family f@&king friendliness! :D

Sources code: making easy front end changes difficult since 1873. :P

Re: Something different: recent posts at top of board index.

Reply #16

Oooo, yuck. It's one of those horrible diseased hookers. :P

Ok, so what markup does it output? Anyone got it running live?
Master of Expletives: Now with improved family f@&king friendliness! :D

Sources code: making easy front end changes difficult since 1873. :P


Re: Something different: recent posts at top of board index.

Reply #18

Ok, so if you already have it running live at the top of the boards, why do you need my help? I don't get it.
Master of Expletives: Now with improved family f@&king friendliness! :D

Sources code: making easy front end changes difficult since 1873. :P

 

Re: Something different: recent posts at top of board index.

Reply #19

http://addons.ElkArte.net/enhancement/Recent-Topics.html

I feel you (Jorin) are using two addons: the one that moves the IC to the top and this one.
It may be kind of intended because I reused the existing template for the IC in one of the first versions (if I ever published it to begin with).

Quote from: Antechinus – Ok, so if you already have it running live at the top of the boards, why do you need my help? I don't get it.
You were the one pointing out there is an id duplication. :P
Bugs creator.
Features destroyer.
Template killer.

Re: Something different: recent posts at top of board index.

Reply #20

Yeah but he already knows how to fix that. :P
Master of Expletives: Now with improved family f@&king friendliness! :D

Sources code: making easy front end changes difficult since 1873. :P

Re: Something different: recent posts at top of board index.

Reply #21

Anyway, since that add-on is just hijacking the exact same li and table as used by the default recent posts, the CSS I gave will work without any changes.
Master of Expletives: Now with improved family f@&king friendliness! :D

Sources code: making easy front end changes difficult since 1873. :P

Re: Something different: recent posts at top of board index.

Reply #22


Not? Sorry.  :-[

Re: Something different: recent posts at top of board index.

Reply #23

Ok, so I updated local to 1.07 and installed the add-on. Yup, same CSS works without any changes, since the add-on keeps the same ID's for the block elements anyway.
Master of Expletives: Now with improved family f@&king friendliness! :D

Sources code: making easy front end changes difficult since 1873. :P

Re: Something different: recent posts at top of board index.

Reply #24

Hey, more fun and games. :D

Code: (Same deal - userContent.css for Firefox or Pale Moon) [Select]
@-moz-document domain(elkarte.net) {
#recent_posts_content {
position: absolute;
z-index: 99;
top: 109px;
left: -3px;
width: 280px;
border: 3px solid #4b863c !important;
border-radius: 0 5px 5px 0;
background: #fafafa !important;
box-shadow: 0 2px 4px #111;
border-top: 3px solid #5ba048 !important;
border-bottom: 3px solid #437837 !important;
}

#ic_recentposts th {
display: none;
}

#ic_recentposts td {
display: block;
min-width: 245px;
max-width: 245px;
}

#ic_recentposts .recentpost {
box-shadow: 0 1px 0 #fff;
}

#recent_posts_content h3, #ic_recentposts .recentposter, #ic_recentposts .recentboard, #ic_recentposts .recenttime {
border: none !important;
}

#ic_recentposts a {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
Master of Expletives: Now with improved family f@&king friendliness! :D

Sources code: making easy front end changes difficult since 1873. :P