jaseone
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Why my feed error?Remove the blank line so we can see the error that generates.
Forum: Fixing WordPress
In reply to: Add categories on the flySpeedy Cat is what you want. ??
Forum: Fixing WordPress
In reply to: Sorry, no posts matched your criteriaNeither of your domains can be reached at the moment, traceroutes get as far as unknown.level3.net and then time out, is your problem maybe related to your host and things have just gotten worse?
Forum: Themes and Templates
In reply to: CSS positioning problemWhat happens when you have them as:
#archmen {
position: absolute;
top: 15px;
left: 650px;
}#aboutmen {
position: absolute;
top: 35px;
left: 675px;
}#contactmen {
position: absolute;
top: 50px;
left: 700px;
}The container header div has enough height, although you have header defined twice in your CSS so try consolidating those.
Forum: Themes and Templates
In reply to: Blix – Category & Optioncount problemI think it is the:
#subcontent li a
{
display: block;in the CSS doing that, you’ll have to modify that so it does what you want, changing it to display: inline; would fix this problem but may cause others.
Forum: Themes and Templates
In reply to: Blix – Category & Optioncount problemIt would be easier to see what is going on if you posted either the URL so we can view the source or the source of that area of the page so we can see what is causing the line break.
Forum: Fixing WordPress
In reply to: page management questionIf you edit the pages you added there should be a section Page Options that allows you to specify the Page Order, number the pages in the order you want them displayed.
Forum: Fixing WordPress
In reply to: 404 issue and invisible directoriesI don’t think you will be able to do what you are trying to accomplish with that setup, you seem to be using one of those services that allow to you point port 80 of one of your domains to another port to get around the limitation of using port 80 by your ISP. However that will only ever point it at one page and won’t function as a proper domain name at all, although I think there might be some premium services out there that allow you to do so.
I’d highly recommend you sign up for some hosting for running a live site and just leave that setup for testing purposes, you can get hosting from A Small Orange for as little as $30 a year.
Forum: Plugins
In reply to: Override function _page_level_out()I ended up finding https://www.webspaceworks.com/wp-plugins/foldpagelist.html and followed their lead creating a new plugin with my version of wp_list_pages (jbcssmenu_wp_list_pages) that is only modified to call jbcssmenu_page_level_out() instead of the original, which is my hacked version so the unordered lists come out in a more friendly format for a CSS Menu.
So stay tuned for the CSS dropdown menu to be released in a format friendly for re-distribution. ??
Forum: Plugins
In reply to: Interest in CSS dropdrown menu for pages plugin?Argh!!! It would appear my site is broken in Internet Explorer and after a once over of the HTML and CSS, I’m a little stumped. Can anyone see anything there that would force IE just to display the background image of Kubrick? It’s most likely something I have done but I can’t figure out just what yet…
Forum: Plugins
In reply to: change header picture of default 1.5 themeIt’s wp-content/themes/default/header.php that you need to first edit and uncomment the bit about a personal header, then place your image named personalheader.jpg (or change the name in the CSS) in wp-content/themes/default/images
Forum: Plugins
In reply to: Interest in CSS dropdrown menu for pages plugin?I have got a demo up and running now on my site:
https://www.jasonbainbridge.com/wordpress/
The CSS needs quite a bit more tweaking (it’s been a long time since I’ve done much with CSS) and I need to work on integrating it a little more cleanly into WordPress but the foundations are there to easily turn the results of the list_pages() function to return a CSS dropdown menu. ??
Currently it goes to a depth of 3 levels, which you can see under Tomcat Tips/ Category 1 / Third level?
If anyone is interested leave a note and I’ll share my code so far. ??