Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • What I do is a CSS Media Query and have the map display only on screens above 600px.

    Then I have created a custom attribute “google-maps-url” where I put/hold the map url. (something you’ll need to add manually for each event)

    Then in the formatting tab for Settings>Formatting>Events, I’ve placed this HTML:

    <a href="#_ATT{google-maps-url}" target="_blank" alt="Link to Google Maps" id="google-map-link">View On Google Maps</a>

    Then, included in the Media Query I have (for the #ID I created: “google-map-link”):

    @media screen and (max-width: 600px)	{
    
    div.display-map	{
    		display:none;
    }
    
    #google-map-link	{
    	display:inline;
    		font-size:80%;
    	}
    }

    Of, course you need to make it not show up when >600px, so in your default CSS place this:

    #google-map-link	{
    	display:none;
    }

    And, for the default CSS for the map itself (my styling/layout with limited width and float:right; Your style needs will likely differ) The “display” property is what you need to make it show by default:

    div.display-map	{
    	float: right;
    	margin: 0 0 .6em .6em;
    	max-width:60vw;
    	display:inline-block;
    }

    I hope this helps.

    • This reply was modified 7 years, 2 months ago by logolessllc.
    • This reply was modified 7 years, 2 months ago by logolessllc.
    Thread Starter logolessllc

    (@logolessllc)

    Everything went fine. First, I upgraded SD. Then, I upgraded WP–no hicups–smooth as a baby’s bottom. The “white SD” was really close to what I needed and not much went into the child theme to have it render the style I had established years ago with the original “dark only” SD to make it white.

    I had to brush up on the functionality of the SD images–the images needed their paths updated–I had been storing them previously in a folder outside of WP. I brought them into the media library and updated the paths. No problems encountered.

    All in all, no hair-pulling, no nail-chewing angst–a successful process. I wish more adventures didn’t have Murphy tagging along–he stayed at home this time. So often, it seems that if something can go wrong, something will go wrong. Thanks. Great theme.

Viewing 2 replies - 1 through 2 (of 2 total)