jimhere
Forum Replies Created
-
Forum: Themes and Templates
In reply to: New Theme “unreflected” (possibly) & commentsDid you draw that illustration yourself? That “shelf” thingy is pretty nice…
Forum: Your WordPress
In reply to: Customised WordPressWhat is that slider at the top for post navigation? Is that a plugin?
Forum: Plugins
In reply to: Adding a Home Link with WP-PagesNavFor me it’s in my theme’s header.php.
<ul class="menu">
<li class="<?php if (((is_home()) && !(is_paged())) or (is_archive()) or (is_single()) or (is_paged()) or (is_search())) { ?>current_page_item<?php } else { ?>page_item<?php } ?>">">Home
<?php wp_list_pages('sort_column=menu_order&depth=1&title_li='); ?>
<?php wp_register('<li class="admintab">',''); ?>Which I think I took from another theme…
Forum: Fixing WordPress
In reply to: static “inner” pagessamboll,
“I simply created a page and used html to make the title clickable. Leave the page blank.
The header image link will then take you to your static page uri”Do you mean it’s sort of a jump-page to the static html page?
Forum: Themes and Templates
In reply to: New theme: Abstrakt 3 Column with Widget SupportDid you say before that your “MapleLeaf” was widgetized, or am I thinking of another one?
Forum: Themes and Templates
In reply to: Kubrick Side appears at bottomWhen this happens to me (it’s always something!) I go to the pros at
https://www.csscreator.com/css-forum/Forum: Themes and Templates
In reply to: Kubrick Side appears at bottomwell, your css has a few img styles:
p img {
padding: 0;
max-width: 100%;
}img.centered {
display: block;
margin-left: auto;
margin-right: auto;
}img.alignright {
padding: 4px;
margin: 0 0 2px 7px;
display: inline;
}img.alignleft {
padding: 4px;
margin: 0 7px 2px 0;
display: inline;
}Maybe test it at a specific size (400px) instead of 100% to see if it works.
Forum: Themes and Templates
In reply to: Kubrick Side appears at bottomCould you set in the css:
max-width: 400px;
or something smaller so the image doesn’t force everything down?Forum: Installing WordPress
In reply to: Mac-friendly hosters?Thanks for the reassurance. I just got some space on A Small Orange.
Forum: Everything else WordPress
In reply to: Problems deleteing a categoryCouldn’t you just rename “uncategorized” to something more useful? (I just call mine “All”).
Forum: Fixing WordPress
In reply to: MAC vs. PCThe red looks the same everywhere to me (mac osX 10.4.3, safari)…
Forum: Fixing WordPress
In reply to: Rich text editor missing!I don’t know the anawer, but you could try loading the admin in FireFox (for mac) and see if it’s there…
Forum: Themes and Templates
In reply to: To Folks with CSS problemsAfter reading this post, I went to firefox.com, and eventually found Extensions, then found this css viewer (2 or 3 pages in).
https://addons.mozilla.org/extensions/showlist.php?application=firefox&category=Developer%20Tools
After clicking to install, I had to restart FF, then it was there.
Forum: Installing WordPress
In reply to: Mac-friendly hosters?True.
I guess I wonder if there are any “features” a hoster may have in it’s Control Panel page that won’t work. But I suppose since all the controls are web based (not desktop apps), it shouldn’t matter. Just had to think about it…
Sushubh, Who do you use as a hoster?Forum: Themes and Templates
In reply to: To Folks with CSS problemssamboll, this is astonishing. I never imagined something like this. Thanks, this’ll really help fixing things up!