ivovic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hostican?yeah, fair enough, who knows… maybe the hostican admins hang out here when their server is down.
Forum: Fixing WordPress
In reply to: Can not find my blog or my admin!Thanks Poe, yet another bastardisation of the venerable kubrick 😉
It’s due for a redesign though – that’s been like that for getting on 4 years or so, which is too long for a personal blog…. Too bad I’m always working on something else.
Forum: Plugins
In reply to: Uploading files in comments?maybe what you guys really want is a forum, not a blog.
Forum: Fixing WordPress
In reply to: Can not find my blog or my admin!it’s the ‘little server that could’
“hostican, hostican”
Forum: Themes and Templates
In reply to: Missing Presentation TabTry the “design” tab instead… *sigh* 😛
Forum: Fixing WordPress
In reply to: Matching body width with header widththis has absolutely nothing whatsoever to do with your wordpress version.
if you remove the background image – all you’ll be left with is a transparent page div, showing the body background colour.
have you actually looked at the images in your style? try opening them in your favourite image viewer, things should become clearer for you if you actually examine what you’re working with.
Forum: Themes and Templates
In reply to: How to separate link style to images? don’t need the underline!I think it’s important to accept that there’s just some stuff you can’t do…
and putting borders and crap on your anchor tags is one of those things, unless you want it to happen on *all* anchor tags.
’nuff said.
really, the effect isn’t worth it anyway – if you want underlines, use bloody underlines, not borders.
Forum: Fixing WordPress
In reply to: Matching body width with header widthwell, your page size is actually the same width as your header image, but unfortunately, it’s transparent.
what isn’t the same width – is the background image, the white thing you can actually see. If you want that to match, you’ll have to change out the background as specified in the URL parameter in your CSS file.
now, as for the real problem… that header image of yours is enormous in file size. For someone who doesn’t have it in their cache you start to think nothing’s coming, then all of a sudden it shows up.
consider compressing it more, or something.
Forum: Fixing WordPress
In reply to: can this be made to an if else statementyour issue with replacing the text with an image must have been just a punctuation problem — otherwise, it should have worked just fine.
<?php if (in_category(9)) : ?> <img src="<?php bloginfo('template_directory'); ?>/images/brose1.jpg" alt="test system image" /> <?php elseif (in_category(8)) : ?> <img src="<?php bloginfo('template_directory'); ?>/images/automation.jpg" alt="test system image" /> <?php else : ?> [whatever else goes here] <?php endif; ?>I don’t like splitting up curly brackets like you have – it works, but it’s hard to keep track of, so when I use large amounts of HTML between conditionals, I like to use the alternate syntax, above.
Forum: Fixing WordPress
In reply to: Need help with code-My background color is missingon the right actually 😉
Forum: Fixing WordPress
In reply to: Multiple loopsyour question about other reasons, and the purpose of rewind_posts are inextricably linked.
the_post advances the post counter so that once a post has been output, it isn’t stepped through again. Rewind_posts takes that counter and resets it.
This is useful if you want to reuse the query you just performed, for whatever reason. Instead of doing it again, rewind_posts will just allow you to step through it as though you’ve never outputted it before.
This is particularly useful for ‘contents’ style links like I have at the top of my sidebar on the main page — as it saves you doing the query again.
regardless of whether you change the query or not, rewind_posts just lets you use it as many times as you like.
Forum: Fixing WordPress
In reply to: moving wordpress to a new server – same domainwow, imagine that… being required to do your own research.
how ghastly for you.
well, if you’re comfortable with your understanding of the rewriting part, then it’s important to note that the rewriting is being sent to the same file (index.php)
wordpress then takes your URL and breaks it up according to your permalink options. First you tell it what the /x/y/z/ mean in the permalink settings, right? then it uses that information to deduce which of those is a category, and which is a page or a post name.
using the most common settings as an example…
if it finds /category/x/ it knows, that x is a category, if it finds just /x/ then it’s a page… since /9999/ is a number and if your permalinks are date based, then it’s most likely a yearly archive, right?… and so on.
Forum: Everything else WordPress
In reply to: Slowing to a Crawlgodaddy is your problem… did you really expect them to say “yeah, uh, we put you on an overloaded server with 3000 users on it”
every second site I find on godaddy is taking 6-11 seconds to process 40 queries.
Forum: Everything else WordPress
In reply to: Friendliest permalinks possibleset your permalinks to /howdy-friend/got-a-post-called/%postname%/for-ya/