mariocoder77
Forum Replies Created
-
Hi Tobias:
Thanks for the fast response! That makes sense.BTW, I have a suggestion for tablepress. You can make it basically responsive by default just by adding the below CSS:
.tablepress{
display: block;
overflow-x: auto;
}It will make the table scroll horizontally when needed. Of course it can’t do the other things the extension does, but at least it makes tablepress sort of responsive out of the box.
Forum: Everything else WordPress
In reply to: Creating website w/o hostingYou can use WAMP to create your WordPress site completely on your PC first: https://bitnami.com/stack/wamp After that, use a plugin like Duplicator to replicate the entire site onto your live server: https://en-ca.ww.wp.xz.cn/plugins/duplicator/
Forum: Fixing WordPress
In reply to: How can I add my javascript fileI’m never used Leaflet before, but for adding external JavaScript code inside the WordPress editor, I’ve learned it’s best to add the snippet as a shortcode. See #3 in this blog post: http://blog.dynamicdrive.com/add-custom-javascript-css-wordpress/
Forum: Fixing WordPress
In reply to: Changing themes down the road- best practice?Thanks James!