Totally new to CSS and customizing. Helping a friend modify her journal. Using a tutorial and CSS by

custom layer: HERE CSS is HERE
To summarize, she wants to be able to view her previous years posts via the calender archive links. Thank you.
sorry about all the edits. dropped tags.
Comments
It looks like on your LJ in question, going by the source code - the year list is there, but is hidden with the css.
.prevnext{visibility: visible} should turn it back on.
However I'm sure she has the .prevnext turned off for a reason, so what I would do in that case is go into the code that prints the year and change the class name so it can be given it's own style.
function YearPage::print_year_links() { """<div class="prevnext" style="margin-bottom: 20px;"><ul class="year">\n"""; foreach var YearYear y ($.years) { var string class = ""; var string year = $y.year + ""; if ($y.displayed) { $class = " class=\"active\""; } else { $year = """<a href="$y.url">$year</a>"""; } """<li$class>$year</li>\n"""; } """</ul></div>\n"""; }
function print_module_calendar
for the year. But it seemed to me like she wanted year links on the archive page itself.i could attempt to fiddle with this if you could give me specific "how to" directions. of course if it messes up the layout i can always change it back. thanks!
i can try to turn the "prevnext" to visible and see what happens first. as long as i can restore it. LOL
thanks for you help. :)
i just noticed that there is a link on hover for the month. when you clicky on the month it takes you to a page HERE that has the drop down menu at the top. not sure if that wasn't there already but hey, working now. LOL
i will see if she is happy with that before attempting anything else. thank you very much.
btw, should i put solved on this post yet?
yes, i did sort of get something to show up for the LJ user to see using the above suggestions to make it visible. the user is happy enough with going from the month to the archive and from there to the years. a bit convoluted but okay with her. i don't think i need to attempt anything else right now.
thanks.