I've been searching forever and finally found instructions on how to do extended (expanded, more and less) entries for Expression Engine. I just wasn't using the correct search terms, I guess. Anyway, here's
the link for future reference.
Posted by LaDonna at 03:05 PM on 02/15/05 • Permalink •
Comments [0]
• Filed under:
Blogging • Expression Engine •
I've been wanting dropdown type categories and stuff, but I don't like the dropdown look, especially in Safari. I really wanted something like the boxes at
So Very Posh. Well, I found the code for jumpboxes (as they're called) over at
Scriptygoddess. I figured out how to adapt Expression Engine code to make them work on this site. I'm posting the codes here for future reference:
<form name="jump1">
<select name="jumpbox" class="jumpbox" OnChange="document.location=jump1.jumpbox.options[selectedIndex].value">
<option selected>Recent Entries...</option>
{exp:weblog:entries orderby="date" sort="desc" limit="15" weblog="{master_weblog_name}" dynamic="off"}
<option value="{title_permalink=weblog/index}">{title}</option>
{/exp:weblog:entries}
</select>
</form>
<form name="jump2">
<select name="jumpbox" class="jumpbox" OnChange="document.location=jump2.jumpbox.options[selectedIndex].value">
<option selected>Monthly Archives...</option>
{exp:weblog:month_links weblog="{master_weblog_name}"}
<option value="{path=weblog/index}">{month} {year}</option>
{/exp:weblog:month_links}
</select>
</form>
<form name="jump3">
<select name="jumpbox" class="jumpbox" OnChange="document.location=jump3.jumpbox.options[selectedIndex].value">
<option selected>Category Archives...</option>
{exp:weblog:categories weblog="{master_weblog_name}" style="nested"}
<option value="{path=weblog/index}">{category_name}</option>
{/exp:weblog:categories}
</select>
</form>
I used the following code to style them with CSS:
Update: Damn, they still look like dropdowns in Safari. Oh, well. At least I can style them to look decent in Firefox.
« All Done!
Posted by LaDonna at 07:54 AM on 02/11/05 • Permalink •
Comments [0]
• Filed under:
Blogging • Expression Engine •
Page 38 of 38 pages ‹ First < 36 37 38
Page rendered in 0.0649 seconds