bokou
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Photo Album Plus] Not passing Markup Validationnegative, still getting the same four validation errors. I even removed the photo of the day which is what I thought may be causing it, but it doesn’t do anything.
Attribute ontouchstart not allowed on element div at this point.
ontouchmove="wppaTouchMove(event);" ontouchcancel="wppaTouchCancel(event);" >I look at the sourcecode lines of the generated homepage that it refers to and it’s prefaced by “<!– start WPPA+ Footer data –>” if that points anyone in the direction of figuring it out.
I suppose I will learn to live with it. I love your plugin but don’t know enough outside of basic HTML and CSS to do anything to fix it.
Forum: Plugins
In reply to: [WP Photo Album Plus] Not passing Markup ValidationSeems like a rather “can’t eat your cake and have it too” mentality. It’s possible to validate and to have mobile compatibility
Ontouch events shouldn’t be in div tags: http://stackoverflow.com/questions/6552949/where-are-ontouch-events-allow-to-be-why-not-on-divs
figured out my answer to the first question too…
in file wppa-common-functions.php on line 1243 there’s
$user = wppa_get_user('display');I simply changed it to read:
$user = wppa_get_user('login');that will display “caveman2” or whatever the user’s login is instead of “John Smith” or whatever they have their name listed as.
Forum: Plugins
In reply to: [Quick Chat] [Plugin: Quick Chat] Show only Userlist in Widget?no I poked around and didn’t see there was a separate file for the widget that I could modify… was just wanting to modify the widget part and keep the rest of it (wouldn’t want to delete the chat box for the full module, just the widget). I’ll see what I can come up with. Ended up going with another chat plugin for the time being that shows online members but I want Quickchat so I’ll see what I can do
Forum: Plugins
In reply to: [Quick Chat] [Plugin: Quick Chat] Show only Userlist in Widget?would there be a way for me to duplicate the widget and modify the second one?
Forum: Fixing WordPress
In reply to: Block a site from linking to me in Google Blog Search?update: I updated my wordpress to 3.3.1 and found the notification in my Google Webmaster tools. I fetched it as Google Bot and everything seems ok so possibly simply updating it helped remove the malicious code. Anyone else had this issue?
Forum: Themes and Templates
In reply to: Can't get text widget to stop wrapping text…solved…
I used these three css properties in combination and one of them solved it
white-space: nowrap;
overflow: hidden;
display: block;Forum: Themes and Templates
In reply to: Can't get text widget to stop wrapping text…I’ve tried word-wrap, overflow: hidden; white-space, you name it and no luck. it’s in my typography.css so I know exactly what I’m trying to change but I just don’t know how to change it
Forum: Themes and Templates
In reply to: Can't get text widget to stop wrapping text…just realized it’s not a text widget but the recent posts widget. I’ll try and dig around some more.
what’s the css property for wrapping text? is it “word-wrap: break-word;”?