sjsperry
Forum Replies Created
-
The external Reset Tool plugin didn’t work for me.
However, regenerating the thumbnails for all the images did actually make the errors go away.Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Email SharingGreat.
Forum: Themes and Templates
In reply to: z-index issue with twentyeleven using the article tagI was having this same problem.
My article tag looks like this:
<article class="post-9 page type-page status-publish hentry" id="post-9"> </article>After a process of elimination, the offending class in IE7 was “hentry”.
My fix was to remove hentry from a couple of places in style.css. I can’t tell you why it works because there doesn’t seem to be any reason (z-index, strange comments, strange styling).
.hentry, .no-results { margin: 0 0 1.625em; padding: 0 0 1.625em; position: relative; } .hentry:last-child, .no-results { border-bottom: none; }To this:
.no-results { margin: 0 0 1.625em; padding: 0 0 1.625em; position: relative; } .no-results { border-bottom: none; }Forum: Plugins
In reply to: [Plugin: slidoox] Slidoox, new version?that’s right, it doesn’t seem to get called, but you can make the statement in phpmyadmin, etc.
CREATE TABLE wp_slidoox (
id mediumint(9) NOT NULL AUTO_INCREMENT,
title VARCHAR(100) NOT NULL,
content text NOT NULL,
position int(3) NOT NULL,
UNIQUE KEY id (id)
)Forum: Plugins
In reply to: [Plugin: slidoox] database error?I had the same problem, you need to run a SQL command via phpmyadmin or a similar tool. Once in your db, orelei_wrdp11…
CREATE TABLE wp_slidoox ( id mediumint(9) NOT NULL AUTO_INCREMENT, title VARCHAR(100) NOT NULL, content text NOT NULL, position int(3) NOT NULL, UNIQUE KEY id (id) )