brianfit58
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Preview problems for mixed URL blog on a subdomainHad I conducted a better search of the Forum, I would have found the answer to my question here.
Insanely simple: change Settings > General > WordPress Address to the subdomained version of the URL, in my case http://blog.brian-fitzgerald.net — and hey presto.
Forum: Plugins
In reply to: [WPBook] [Plugin: WPBook] Just my homepage in canvas iframeNo migrations enabled.
Site URL: http://blog.brian-fitzgerald.net/
Site Domain: brian-fitzgerald.netMy WordPress install is at http://www.brian-fitzgerald.net/wordpress/ though I have the site URL set to http://blog.brian-fitzgerald.net/ in the WordPress General settings. Could that be a factor?
Forum: Plugins
In reply to: [WPBook] [Plugin: WPBook] Just my homepage in canvas iframeOh, hoping you can make the same magic happen, but I’ve got both Oauth 2.0 for Canvas disabled and Post for Canvas disabled as well, but I’m still getting just the iframed blog page in my app.
My blog url is:
http://blog.brian-fitzgerald.net/
My App url is:
http://www.facebook.com/developers/apps.php?app_id=130644790339416&ret=2
My canvas url is:
http://apps.facebook.com/nopassengers/
Wordpress version 3.05
Wordbook version 2.0.12I’ve deleted SFC and Facebook Comment importer from my plugins, but still no joy.
Any help greatly appreciated!Forum: Fixing WordPress
In reply to: Hyperlink from Background Image in CSSIf you prefer a non-javascript option, you can do the following.
Presuming you have an existing class defined for your header image which is something like this:
.header_logo { background-image: url(images/header.png); background-repeat: no-repeat; margin-top: 8px; float: left; height: 145px; width: 870px; }You define two new classes:
.header_logo a { display: block; float: left; height: 145px; width: 870px; outline: none; } .header_logo a span { display: none; }And then, in the HTML where the class is called, add a hyperlink to some dummy text within span tags. The dummy text will be invisible on the page, and a block the size of your graphic will be clickable:
<div class=”header_logo”> <a href="http://blog.brian-fitzgerald.net" title="There's no place like…"> <span>This links home, dear screen reader</span> </a> </div>If you want to know why this works, I blogged it here: