Chris Roberts
Forum Replies Created
-
Forum: Plugins
In reply to: [Tippy] Spacing issueThanks for the word on my site, I recently moved hosts and forgot to refresh the permalinks. Working now.
On the styling, have you used an element inspector, something like the inspector in Chrome Developer Tools? Very helpful when tracking down what is controlling the styling in a particular part of a site. Using the inspector you should be able to fairly quickly determine what’s putting in the space and how to get rid of it.
Forum: Plugins
In reply to: [Tippy] Spacing issueare you using header=”off” in the shortcode? That will take off the header completely. For the rest of the space, that’s a little hard to say without seeing it. Use your browser’s element inspector to find the selector for that area and to find out what rule is adding the space. Most likely, that’s the padding that gets added to .tippy_body so to get rid of it you would do .tippy_body { padding: 0; }
Forum: Plugins
In reply to: [Multi Slider] slider problem after renaming slug of sliderThe slides make use of the custom post type feature in WordPress, so they are stored as posts using the slug for the post type. I still need to check, but most likely I forgot to rename the slug on the posts when the slug gets changed on the slider. I’ll get that fixed in an upcoming version.
Forum: Plugins
In reply to: [Multi Slider] slider problem after renaming slug of sliderI have a notion what might have happened. In the meantime, can you try changing the slider back to its old name and see if the slides show up again?
Forum: Plugins
In reply to: [Tippy] There is no more tooltip or popup with new updateGlad you figured it out, and that lets me know something I need to check. Minification shouldn’t break the plugin. I’ll see if I can figure out why it does.
Forum: Plugins
In reply to: [Tippy] Tippy appears behind ContentIt’s hard to say without seeing the page itself (I’m afraid I’m not real sure what I’m looking at on the screenshot; can’t really tell which part is from/supposed to be from Tippy) but I wonder if the table has a z-index set that puts it above the tooltip.
Forum: Plugins
In reply to: [Tippy] Hover effect on trigger image?Are you looking for the css selector that you can use in jQuery or some such, matching a tooltip trigger image? Something like a.tippy_link:hover > img would, I think, do the trick.
Forum: Plugins
In reply to: [Glossy] The shortcode has stopped getting executed?The updates to Tippy have it running custom processing on post/page content rather than using the WordPress shortcode functions. I hadn’t anticipated the effect of this on people calling the shortcode from within widgets and such. I’ll look into a solution.
Forum: Plugins
In reply to: [Tippy] HTML tags not workingJust posted Annie 2.0.0 which makes use of the new Tippy feature and allows styling in the tooltips. Make sure you have the latest Tippy installed and update Annie and footnote styling should now appear in the tooltip.
Forum: Plugins
In reply to: [Tippy] HTML tags not workingYesterday I posted a new version of Tippy which includes an experimental feature for loading the tooltip with content. This new feature should make it easier for me to go back and modify Annie so that it does not strip out html. I’ll check into it.
Forum: Plugins
In reply to: [Tippy] Tables in TippyI’ve just posted Tippy 5.1.0 with a new experimental option that changes the way Tippy pulls in its content. It might solve this issue for you. Install the latest Tippy then go to the Tippy settings page in your dashboard and toggle on the experimental option, the setting in the bottom-right corner. That might allow your markup to work right.
Forum: Plugins
In reply to: [Tippy] Weird line has appearedThe default tippy.css includes a default border-bottom: 1px dotted; If you can edit your theme’s main style.css, add the following rule:
.tippy_link {
border-bottom: none;
}That should do it.
Forum: Plugins
In reply to: [Tippy] HTML tags not workingAre html tags being removed from every tippy shortcode, or only when used with Annie footnotes? Footnote popups won’t display html markup, but that markup will be displayed in the actual footnote at the end of the post/page. This is something I hope to change in a future version.
If the problem is that Tippy itself has formatting stripped, that’s a separate issue, something new I’ll need to address. I’ll look into it.
Forum: Plugins
In reply to: [Tippy] Tables in TippyI’ll check on this. I’m working on some changes on how Tippy pulls in content which should improve how it handles this sort of thing, so my upcoming changes should fix this, but I’ll be sure to check.
Forum: Plugins
In reply to: [Glossy] Multisite problem?Thanks for the update. Glad it’s working.