aodhan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: creating a sideways navigation menuThanks for the pointer churchthemer, I saw the writing -mode alright but since it’s only available with IE it’s not a viable solution for me.
What I might have to to is make different images for each letter and put them together on the fly. Yuck…
Forum: Themes and Templates
In reply to: Menu item as linkwhat are you using to generate your menu?
With a few of them the create lists including the open and closing list tags. But they generally have the option to exclude this open tag, which means you could open the list yourself and set the first item yourself, directing it to any link you’d like ??
Forum: Themes and Templates
In reply to: how to higlight a page in the nav bar when drilling downThis is what i did to resove this issue I stopped usint the wp_list_pages and used the plugin wp_pages_nav:
<?php /* wp_list_pages('depth=1&title_li=0&sort_column=menu_order'); */?> <?php if(function_exists("wp_pages_nav")) { if(is_page() ) { wp_pages_nav("show_all_parents=1&sort_column=menu_order"); } else { wp_pages_nav("show_all_parents=1&sort_column=menu_order¤t=24"); } } ?>
Seems to work fine.
Forum: Themes and Templates
In reply to: Page 1 and Page 2 on My Theme?what theme are you using? it looks like they may be hard coded into the theme. Maybe in the header.php file….
Forum: Themes and Templates
In reply to: Picture posting black borderIt’s not all that bad. The smile images have a class=’wp-smiley’ so you could set your boarder in your css to be white and then override that for the img.wp-smiley class.
I think that would do it.
Forum: Themes and Templates
In reply to: How to have friendly navigation linksThanks for the suggestoin MichaelH but I don’t think that will do exactly what I’m looking for. Let me rephrase the question slightly:
Is it posible to set up links based on the already know page name?
So if I have a page that I know to be called “blog” but I don’t know the page_id is there a way to call it?
Something like:
<?php bloginfo('template_url'); ?>/?page_id=5'
But instead of page_id I would like to have page_name or page_title or something like that…..Thanks again
Forum: Themes and Templates
In reply to: sidebar is below the content in one pageI had this same problem, and for me the issue was that some of the divs weren’t been closed in the correct order or being used within ‘li’ which firefox handles but IE doesn’t. What I did was took the source of the generated page and had it validated in homesite (I’m sure there are other free tools about that will do this for you
Hope this helps