ffrapporti
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
I have the same issue. Having to restart NGINX on a environment where we have other 120 websites sounds overkill.
Forum: Fixing WordPress
In reply to: Missing arguments on localhost using wp-stickyAny php programmer with basic knowledge who may help?
Could the problem be related to permissions or php version? Now I’ve got version 4.4.7 . Tried out with 5 but no luck.
Forum: Fixing WordPress
In reply to: Using wp_query for a school newspaperMaybe you could make that easily with a plug-in called wp_sticky…
Forum: Fixing WordPress
In reply to: CSS Liquid menu with wp_list_pagesMaybe I’m missing something but it looks like you can achieve the same reslut without a span… for my site I did it this way:
.mainmenu { text-align: center; } .mainmenu ul { list-style: none; padding:0px; border:0px; } .mainmenu li { border: 0px; display: block; float: left; margin: 0px 2px; height: 36px; background: url(img/tabright.jpg) bottom right no-repeat; } .mainmenu li:hover { background: url(img/tabright.jpg) top right no-repeat; } .mainmenu li a { color: #666; font-size: 13px; padding:0 18px; text-decoration: none; height: 36px; display: block; background: url(img/tableft.jpg) bottom left no-repeat; line-height: 36px; } .mainmenu li a:hover { border:0px; background: url(img/tableft.jpg) top left no-repeat; color: #666; }
The current page highlighting is made using class li.current_page_item and the submenu is hidden using:
.mainmenu ul ul { display: none; }
and shown with:
.mainmenu ul li.current_page_item ul { display: inline; }
I don’t know if that helps. You can see the result on this page.
Viewing 4 replies - 1 through 4 (of 4 total)