blunted
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Permissions 101It runs, but I can’t get several of the fields to change.
For instance: In the ‘about’ blurb, I’m stuck with a bunch of text about somebody else. I assume my information should transfer itself over to there. In any case, there doesn’t appear to be anywhere else I can change it. I even searched through the WP download on my comp, looking for keywords in the blurb so I could edit them directly, but they don’t come up.
I added a catagory, and that doesn’t show up on the catagories list – it shows up in the admin panel, but not on the index page when you view the site.
I assumed it must have something to do with permissions being set wrong, but maybe I’m wrong.
Time for bed. Thanks for all the help 🙂
Forum: Fixing WordPress
In reply to: Permissions 101That’s very kind of you, podz – thanks. I might just take you up on that offer.
Just wondering – I was reading skippy’s link http://codex.wordpress.org/Hardening_WordPress and it says:
/ — the root WordPress directory: all files should be writable only by your user account.
Does this mean the number should be 700 or 755? It doesn’t mention whether the files should be readable or executable by group/world/user – it would be much better if the right numbers for each directory were given, instead of words, which can be ambiguous.
I don’t mean to sound ungrateful, but stuff like that does my head in.
Forum: Fixing WordPress
In reply to: Permissions 101On ASO – I’ve got cPanelX on there and I use SmartFTP sometimes, if I’ve got a lot to upload.
I can’t understand why I’m having so much trouble with WordPress. Setting up my forum was easy in comparison.
Forum: Fixing WordPress
In reply to: Permissions 101Thanks for the links, everybody. I really wish there was a simple ‘cheatsheet’ kind of thing for setting up WordPress, though. I’ve found myself reading pages and pages of information before I find the answers I need, in most cases – just to get the thing running properly (and it still isn’t, yet). I’m pretty close to giving-up 🙁
Forum: Plugins
In reply to: Multicolour calendarThanks for the code 🙂
Forum: Installing WordPress
In reply to: How to link to a second related stylesheet?jbbrwcky – it was pretty simple, once I figured out what was wrong. I’ve still no idea why the above code works fine in a html document, but doesn’t in php. I don’t know what made me think of it, but the solution is to repeat the placing information for each state of the rollover and forget about the ‘link’ one altogether, like this –
#rollover1
{
float: left;
width: 119px;
height: 41px;
border: none;
padding: 0px;
margin: 0px;
background: url(images/f2_onyx_tabs_01.jpg) no-repeat 0px 0px;
}#rollover1: hover
{
float: left;
width: 119px;
height: 41px;
border: none;
padding: 0px;
margin: 0px;
background:url(images/f2_onyx_tabs_01-over.jpg) no-repeat 0px 0px;
}
#rollover1: active
{
float: left;
width: 119px;
height: 41px;
border: none;
padding: 0px;
margin: 0px;
background:url(images/f2_onyx_tabs_01-over.jpg) no-repeat 0px 0px;
}Note that I also got rid of the ‘a’ tag in each state. If you want to add a depressed button state, you put a different image in the ‘active’ part of the CSS script.
It all works fine now – the buttons anyway. I’ve still got problems with something else. I want to put a background colour behind the calendar, but I can’t find the damn thing anywhere, so I can’t change it. Seems like it’s pulled right out of the database, but I could be wrong. This could take a while yet.
This is what I’ve got so far – http://www.cafedoom.com/wordpress/ (try the buttons out). As you can probably see, I’ve got a grey background to show behind the calendar now, but it goes outside of where I want it, because I made the background show it the sidebar field, rather than just the calendar. Pain in the arse.
I’m trying to make WordPress look a bit like the original website, and then I’ll adapt everything (content) to suit. The links are currently outside of WP, but once I’ve got this thing figured out, it’ll all be inside and, hopefully, easier to maintain and update. Searchable too.
Forum: Installing WordPress
In reply to: How to link to a second related stylesheet?I figured it out by trial and error, eventually….
Forum: Installing WordPress
In reply to: How to link to a second related stylesheet?Should I post this in the CSS section, or just wait a while longer? Not sure what to do – I don’t want to upset anybody by spamming this around.
Forum: Installing WordPress
In reply to: How to link to a second related stylesheet?ifelse – thanks for that explanation. I’ve got the link to the stylesheet now, and the buttons show, but the rollover effect still doesn’t work, so I guess there must be a flaw in the css.
I think it’s because of the way I’ve notated the link/hover etc. Here’s a bit of my code. Any ideas where I’m going wrong?
#rollover1
{
float: left;
width: 119px;
height: 41px;
border: none;
padding: 0px;
margin: 0px;
background: url(images/f2_onyx_tabs_01.jpg) no-repeat 0px 0px;
}#rollover1 a:link
{
background:url(images/f2_onyx_tabs_01.jpg) no-repeat 0px 0px;
}
#rollover1 a:hover
{
background:url(images/f2_onyx_tabs_01-over.jpg) no-repeat 0px 0px;
}
#rollover1 a:active
{
background:url(images/f2_onyx_tabs_01-over.jpg) no-repeat 0px 0px;
}It’s either that I’m using full stops instead of hashes, or I need to put all the information into one set of brackets. It’s weird though – I got the whole thing working, using ‘class’ instead of ‘id’ in a html document. I don’t understand why it won’t work in a php document.
Beel – thanks, but I tried that before, and all I got was a black page – view source on the page, and all the info was there, but absolutely nothing showed, not even when selecting with a mouse sweep.
Many thanks for the help, both of you 🙂
Forum: Installing WordPress
In reply to: How to link to a second related stylesheet?Hi, Beel – thanks for the reply, but I can’t make it work. The existing tag uses PHP to import the url of the stylesheet, as quoted below. I can’t figure out what to write so that it’ll find mine. I tried putting a straightforward
"<LINK REL=stylesheet HREF="yourfile.css" TYPE="text/css">"in there, but it doesn’t work – does it need some PHP notation to get it going?Here’s a small section of the head, where I guess it goes. Is it better to add another style tag, or… hell, I’m baffled. Somebody help me, please.
<style type="text/css" media="screen">
@import url( <?php bloginfo('stylesheet_url'); ?> );
</style>
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" />Forum: Fixing WordPress
In reply to: Button array – image rolloversWell thanks for warning me about posting code – I saw code posted elsewhere in the forum and thought it was OK, plus there’s no mention of it below the reply window, where it tells you, “Put code in between
backticks” which I did. There was no way to know, so please forgive me.I looked through all the codex and several other resources before posting here, and it didn’t help. The tutorials are mainly on the subject of text rollovers where the colour of the background changes, rather than the background image. I wonder if any PHP gurus could help me link to a separate stylesheet, in the head, instead of me trying to incorporate the changes in the existing stylesheet?
As for the image names and target pages – these will change if and when I can get this thing working. For now, I’m using stuff that already exists and works, rather than reinventing the wheel and adding another variable, which could possibly confuse the issue.
Thanks for trying, anyway 🙂