daily
Forum Replies Created
-
Z-index of div#branding is higher than the slideshow’s own elements (they are between 1000-1002), that’s why they are under it.
Edit style.css either with your preferred editor or in Admin Panel. Find this:
/* =Header ----------------------------------------------- */ #branding { border-top: 2px solid #bbb; padding-bottom: 10px; position: relative; z-index: 9999; }
and change z-index below 1000:
/* =Header ----------------------------------------------- */ #branding { border-top: 2px solid #bbb; padding-bottom: 10px; position: relative; z-index: 999; }
Forum: Themes and Templates
In reply to: Sticky post isn’t that sticky at all…Yeah sticky posts are in categories 5,6 and 7. I only want to show those categories in the frontpage (index.php). Do I misunderstand the Codex then?
Return ALL posts with the category, but don't show sticky posts at the top. The 'sticky posts' will still show in their natural position (e.g. by date): query_posts('caller_get_posts=1&showposts=3&cat=6');
I get the impression that without caller_get_posts parameter sticky posts will show up at the top.
Forum: Plugins
In reply to: Admin Language SwitcherMoved this topic to here, since the plugin is more usable in multilanguage setup of wpmu. But your help is still needed. Haven’t got a single answer so far.
Forum: Developing with WordPress
In reply to: One installation, multiple subsites (language version)I know how the loop works and i have also tried mu, but i would appreciate more hands on example. If u just use posts, how do you separate “pages” from normal posts? How do you make navigation to each language category so that it updates automatically? How do you make sub-pages? With more categories?
The site I’m working on has 6 top-level pages that each have 2-12 subpages and they even have sub-sub pages. Then it has 6 categories for normal posts.
I’ve have been thinking to tweak a page category plus plugin to suite my needs, but that would need a great amount of work and it doesn’t do permalinks correctly at the moment.
Other option I thought would be to use custom fields to separate navigational elements/static pages from normal posts, but that’s not an easy solution for the end user.
Forum: Developing with WordPress
In reply to: One installation, multiple subsites (language version)How do you generate navigation and design the structure of your site if you don’t use pages at all?
Forum: Fixing WordPress
In reply to: Slimming WP downHow about Mobile Admin?
Forum: Developing with WordPress
In reply to: One installation, multiple subsites (language version)What about static pages? How do you separate them into different language versions? If u make an empty place holder page eg english that has the same name as category the page will override that category.
Could you pass me a link to your solution?
Forum: Fixing WordPress
In reply to: WP List Pages: Can’t list subpagesIf i cannot use wp_list_pages, could somebody help me how to build correct query, to list all childpages of a certain subpage and their childs and so on.