johnfsca
Forum Replies Created
-
Forum: Plugins
In reply to: [12 Step Meeting List] Meeting List Print FunctionTo maintain consistency, I keep ONE database. It can easily be converted into CSV format and uploaded to the WordPress plugin, or alternatively formatted for PDF output. This avoids error-prone duplication of effort. Changing one meeting at a time in two places is asking for trouble.
Forum: Plugins
In reply to: [12 Step Meeting List] List Map titles are cut offBy the way, I’m guessing the District 28 database doesn’t want the Randle Fire Station in Bethel, VT … maybe this instead …
Randle Fire Department, U.S. 12, Randle, WA
Forum: Plugins
In reply to: [12 Step Meeting List] List Map titles are cut offI see your point about the gap. I was focused on the right-hand edge; I see there is the same “gap” on the left-hand edge, so all is symmetrical. It’s really just a padding, and it disappears entirely at narrow widths, so all good.
Looking a little more closely at the left side of the District 28 site, I see the Search box has a DOUBLE dropdown! And it looks like it could use a min-width also, like
span.twitter-typeahead {min-width: 50px;}
Forum: Plugins
In reply to: [12 Step Meeting List] List Map titles are cut offI just upgraded to 2.9.3 as suggested. Looks good on my end.
I think the {min-width: 91.56px;} will still be good for the District 28 site under 2.9.3 because it appears that the dropdown arrow wasn’t taken into account (by Chrome) anyhow.
Forum: Plugins
In reply to: [12 Step Meeting List] List Map titles are cut offThank YOU for your service!!! Sometimes my debugging causes more trouble than it’s worth, but I’ll take the compliment.
Forum: Plugins
In reply to: [12 Step Meeting List] List Map titles are cut offOK, I see the nonfunctioning map dropdown is part of the plugin’s design. So after even more playing around I found this:
div#action.btn-group.btn-group-justified {min-width: 91.56px;}
This leaves some white space at normal desktop widths but is apparently intentional (mine does the same). And for narrow widths the responsive design matches the other elements.
Forum: Plugins
In reply to: [12 Step Meeting List] List Map titles are cut offAlso … not quite sure why your map has a dropdown button but that’s taking up 10 pixels for the (nonfunctioning) down-arrow. If you killed the dropdown you’d need to add 10px to the min-width, total 161.25px.
Forum: Plugins
In reply to: [12 Step Meeting List] List Map titles are cut offThis is the line that is doing it in your current CSS.
div#action.btn-group.btn-group-justified {width: 200px;}
You can check it using the F12 function on most browsers.
It looks too wide to me, by the way. I’d suggest this instead:
div#action.btn-group.btn-group-justified {min-width: 151.25px;}
It still overhangs a little at some viewing sizes but mostly fits to a T.
Forum: Plugins
In reply to: [12 Step Meeting List] List Map titles are cut offthis also worked for me (a little more targeted, but I am not an expert on CSS)
div#action.btn-group.btn-group-justified {width: 200px;}
as i said, play with the 200 number
Forum: Plugins
In reply to: [12 Step Meeting List] List Map titles are cut offOn my site, it looks like I can just add this to the customized CSS:
div#action { width: 150px; }
Play with that number to make things readable. Dunno if that might break other things but it looked good on mine.
Forum: Plugins
In reply to: [12 Step Meeting List] all meetings disappear with 2.9.0No, we’re still in development, hope to launch in a few months. Will let you know. And i can’t remove the link in the original post, would appreciate it if you can.
- This reply was modified 9 years, 3 months ago by johnfsca.
Forum: Plugins
In reply to: [12 Step Meeting List] all meetings disappear with 2.9.0That was it! Thanks. I had created a child theme with archive-meetings.php to customize the appearance. Deleted that from the child theme and all is OK.