mapping an image in page builder html
Has anyone made a map of an image in page builder, one image that has say six different images each with a separate link?
I have tired copying the source from an external page from another site, just to see if it would work - hoping to just change the size and images, but I had no success... advice, hints ... please!
Comments
-
Hi Nikki,
Are you sure that you're looking for image mapping? If you have multiple different images each going to a unique separate link, it sounds like all you need to do is hyperlink those images. Assuming that you are talking about image mapping (having one image be clickable in multiple different sections) I've done this a number of times, both in pagebuilder pages and emails. Here's a direct copy of the code I've used that worked for multiple clickable locations:
<IMG height=244 alt="Go the Final Mile" src="..images/content/pagebuilder/12441.jpg" width=250 useMap=#Map border=0 />
<MAP name=Map>
<AREA shape=RECT target=_new coords=0,0,125,122 href="http://support.operationsmile.org/site/TellAFriend" />
<AREA shape=RECT target=_new coords=125,0,250,122 href="http://support.operationsmile.org/site/TR/Events/OneSmile?pg=ffind&fr_id=1070" />
<AREA shape=RECT target=_new coords=0,122,125,244 href="http://www.operationsmile.org/final-mile/" />
<AREA shape=RECT target=_new coords=125,122,250,244 href="https://secure.operationsmile.org/site/Donation2?df_id=1280&1280.donation=form1" /></MAP>
The one problem I've had was using multiple images for multiple maps, but I never investigated it heavily since it was just as easy to slice the second image up and hyperlink the components.
I hope this helps.
0 -
Matt Burghdoff:
Hi Nikki,
Are you sure that you're looking for image mapping? If you have multiple different images each going to a unique separate link, it sounds like all you need to do is hyperlink those images. Assuming that you are talking about image mapping (having one image be clickable in multiple different sections) I've done this a number of times, both in pagebuilder pages and emails. Here's a direct copy of the code I've used that worked for multiple clickable locations:
<IMG height=244 alt="Go the Final Mile" src="..images/content/pagebuilder/12441.jpg" width=250 useMap=#Map border=0 />
<MAP name=Map>
<AREA shape=RECT target=_new coords=0,0,125,122 href="http://support.operationsmile.org/site/TellAFriend" />
<AREA shape=RECT target=_new coords=125,0,250,122 href="http://support.operationsmile.org/site/TR/Events/OneSmile?pg=ffind&fr_id=1070" />
<AREA shape=RECT target=_new coords=0,122,125,244 href="http://www.operationsmile.org/final-mile/" />
<AREA shape=RECT target=_new coords=125,122,250,244 href="https://secure.operationsmile.org/site/Donation2?df_id=1280&1280.donation=form1" /></MAP>
The one problem I've had was using multiple images for multiple maps, but I never investigated it heavily since it was just as easy to slice the second image up and hyperlink the components.
I hope this helps.
This helps, being fairly new to using HTML, I still don't understand how you came up with the coords - size, I would like to create one image that takes up most of the page with five linkable images that aren't all the same size. Does this make sense? This may be a poor example, but I've been asked basically to replicate the format on www.sammoon.com. The large image on their homepage is one image not a table. It looks fairly basic, I just don't know where to start. Thanks for your help!
0 -
Nikki Valentine Odens:
This helps, being fairly new to using HTML, I still don't understand how you came up with the coords - size, I would like to create one image that takes up most of the page with five linkable images that aren't all the same size. Does this make sense? This may be a poor example, but I've been asked basically to replicate the format on www.sammoon.com. The large image on their homepage is one image not a table. It looks fairly basic, I just don't know where to start. Thanks for your help!
do I need to download some kind of utility to map out the coords?
0 -
Nikki Valentine Odens:
This helps, being fairly new to using HTML, I still don't understand how you came up with the coords - size, I would like to create one image that takes up most of the page with five linkable images that aren't all the same size. Does this make sense? This may be a poor example, but I've been asked basically to replicate the format on www.sammoon.com. The large image on their homepage is one image not a table. It looks fairly basic, I just don't know where to start. Thanks for your help!
Quick down and dirty, image mapping is taking one image, then saying that you want one part of that to be clickable and go to one point. In order to tell the computer what should be clickable and where it should go, you need to define the area that is clickable - that's where this code comes in.
<IMG height=244 alt="Go the Final Mile" src="..images/content/pagebuilder/12441.jpg" width=250 useMap=#Map border=0 />
"height=244" is how tall your image is, measured in pixels. "width=250" does the same, just telling how wide your image is now instead of how tall. Getting one image that fills EVERY browser and looks good will be nigh-on impossible - and ill-advised - so I'd recommend that you pick a good width for your website that you like (700 pixels wide is a number that we use often, 600 for emails) and go with that.
Once you get the image, you then need to tell the computer what part of it should be clickable - your AREA.
<AREA shape=RECT target=_new coords=0,0,125,122 href="http://support.operationsmile.org/site/TellAFriend" />
"AREA shape=RECT" tells the computer to create a rectangular clickable area over your image
"target=_new" tells the computer to open the content in a new window once it is clicked on
"coords=0,0,125,122" tells the computer where to actually find the clickable region
The coordinates can be the trickiest part. They are the X and Y pixel coordinates of the two endpoints of your clickable area
this point
X-------------------------------------
] [
-------------------------------------X
and this point (sorry if this looks wonky, I'm making it in a visual editor so the sidelines of the box might not come out looking quite right)
Usually, I just get those out of photoshop, if you're familiar with using it or similar image-manipulation software. The slice tool combined with the ruler helps monumentally with getting the right coords. There are supposedly some free online programs which will also generate coordinates for you, but I've never had the urge/need to use them, so I can't vouch for or point you to any.
Worst-case scenario, if you have an image and just need the coordinates, I could probably slice it up for you.
0 -
Matt Burghdoff:
Quick down and dirty, image mapping is taking one image, then saying that you want one part of that to be clickable and go to one point. In order to tell the computer what should be clickable and where it should go, you need to define the area that is clickable - that's where this code comes in.
<IMG height=244 alt="Go the Final Mile" src="..images/content/pagebuilder/12441.jpg" width=250 useMap=#Map border=0 />
"height=244" is how tall your image is, measured in pixels. "width=250" does the same, just telling how wide your image is now instead of how tall. Getting one image that fills EVERY browser and looks good will be nigh-on impossible - and ill-advised - so I'd recommend that you pick a good width for your website that you like (700 pixels wide is a number that we use often, 600 for emails) and go with that.
Once you get the image, you then need to tell the computer what part of it should be clickable - your AREA.
<AREA shape=RECT target=_new coords=0,0,125,122 href="http://support.operationsmile.org/site/TellAFriend" />
"AREA shape=RECT" tells the computer to create a rectangular clickable area over your image
"target=_new" tells the computer to open the content in a new window once it is clicked on
"coords=0,0,125,122" tells the computer where to actually find the clickable region
The coordinates can be the trickiest part. They are the X and Y pixel coordinates of the two endpoints of your clickable area
this point
X-------------------------------------
] [
-------------------------------------X
and this point (sorry if this looks wonky, I'm making it in a visual editor so the sidelines of the box might not come out looking quite right)
Usually, I just get those out of photoshop, if you're familiar with using it or similar image-manipulation software. The slice tool combined with the ruler helps monumentally with getting the right coords. There are supposedly some free online programs which will also generate coordinates for you, but I've never had the urge/need to use them, so I can't vouch for or point you to any.
Worst-case scenario, if you have an image and just need the coordinates, I could probably slice it up for you.
Your amazing, thank you! You explain very well & I actually understand so this is a plus plus!! As it looks the coords will be the tricky part, I'll have to get back to you once I play around with it. Again, thank you so much!
0
Categories
- All Categories
- Shannon parent
- shannon 2
- shannon 1
- 21 Advocacy DC Users Group
- 14 BBCRM PAG Discussions
- 89 High Education Program Advisory Group (HE PAG)
- 28 Luminate CRM DC Users Group
- 8 DC Luminate CRM Users Group
- Luminate PAG
- 5.9K Blackbaud Altru®
- 58 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 409 bbcon®
- 2.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- donorCentrics®
- 1.1K Blackbaud eTapestry®
- 2.8K Blackbaud Financial Edge NXT®
- 1.1K Blackbaud Grantmaking™
- 527 Education Management Solutions for Higher Education
- 1 JustGiving® from Blackbaud®
- 4.6K Education Management Solutions for K-12 Schools
- Blackbaud Luminate Online & Blackbaud TeamRaiser
- 16.4K Blackbaud Raiser's Edge NXT®
- 4.1K SKY Developer
- 547 ResearchPoint™
- 151 Blackbaud Tuition Management™
- 1 YourCause® from Blackbaud®
- 61 everydayhero
- 3 Campaign Ideas
- 58 General Discussion
- 115 Blackbaud ID
- 87 K-12 Blackbaud ID
- 6 Admin Console
- 949 Organizational Best Practices
- 353 The Tap (Just for Fun)
- 235 Blackbaud Community Feedback Forum
- 55 Admissions Event Management EAP
- 18 MobilePay Terminal + BBID Canada EAP
- 36 EAP for New Email Campaigns Experience in Blackbaud Luminate Online®
- 109 EAP for 360 Student Profile in Blackbaud Student Information System
- 41 EAP for Assessment Builder in Blackbaud Learning Management System™
- 9 Technical Preview for SKY API for Blackbaud CRM™ and Blackbaud Altru®
- 55 Community Advisory Group
- 46 Blackbaud Community Ideas
- 26 Blackbaud Community Challenges
- 7 Security Testing Forum
- 1.1K ARCHIVED FORUMS | Inactive and/or Completed EAPs
- 3 Blackbaud Staff Discussions
- 7.7K ARCHIVED FORUM CATEGORY [ID 304]
- 1 Blackbaud Partners Discussions
- 1 Blackbaud Giving Search™
- 35 EAP Student Assignment Details and Assignment Center
- 39 EAP Core - Roles and Tasks
- 59 Blackbaud Community All-Stars Discussions
- 20 Blackbaud Raiser's Edge NXT® Online Giving EAP
- Diocesan Blackbaud Raiser’s Edge NXT® User’s Group
- 2 Blackbaud Consultant’s Community
- 43 End of Term Grade Entry EAP
- 92 EAP for Query in Blackbaud Raiser's Edge NXT®
- 38 Standard Reports for Blackbaud Raiser's Edge NXT® EAP
- 12 Payments Assistant for Blackbaud Financial Edge NXT® EAP
- 6 Ask an All Star (Austen Brown)
- 8 Ask an All-Star Alex Wong (Blackbaud Raiser's Edge NXT®)
- 1 Ask an All-Star Alex Wong (Blackbaud Financial Edge NXT®)
- 6 Ask an All-Star (Christine Robertson)
- 21 Ask an Expert (Anthony Gallo)
- Blackbaud Francophone Group
- 22 Ask an Expert (David Springer)
- 4 Raiser's Edge NXT PowerUp Challenge #1 (Query)
- 6 Ask an All-Star Sunshine Reinken Watson and Carlene Johnson
- 4 Raiser's Edge NXT PowerUp Challenge: Events
- 14 Ask an All-Star (Elizabeth Johnson)
- 7 Ask an Expert (Stephen Churchill)
- 2025 ARCHIVED FORUM POSTS
- 322 ARCHIVED | Financial Edge® Tips and Tricks
- 164 ARCHIVED | Raiser's Edge® Blog
- 300 ARCHIVED | Raiser's Edge® Blog
- 441 ARCHIVED | Blackbaud Altru® Tips and Tricks
- 66 ARCHIVED | Blackbaud NetCommunity™ Blog
- 211 ARCHIVED | Blackbaud Target Analytics® Tips and Tricks
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- Luminate CRM DC Users Group
- 225 ARCHIVED | Blackbaud eTapestry® Tips and Tricks
- 1 Blackbaud eTapestry® Know How Blog
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)
- 1 Blackbaud K-12 Education Solutions™ Blog
- 280 ARCHIVED | Mixed Community Announcements
- 3 ARCHIVED | Blackbaud Corporations™ & Blackbaud Foundations™ Hosting Status
- 1 npEngage
- 24 ARCHIVED | K-12 Announcements
- 15 ARCHIVED | FIMS Host*Net Hosting Status
- 23 ARCHIVED | Blackbaud Outcomes & Online Applications (IGAM) Hosting Status
- 22 ARCHIVED | Blackbaud DonorCentral Hosting Status
- 14 ARCHIVED | Blackbaud Grantmaking™ UK Hosting Status
- 117 ARCHIVED | Blackbaud CRM™ and Blackbaud Internet Solutions™ Announcements
- 50 Blackbaud NetCommunity™ Blog
- 169 ARCHIVED | Blackbaud Grantmaking™ Tips and Tricks
- Advocacy DC Users Group
- 718 Community News
- Blackbaud Altru® Hosting Status
- 104 ARCHIVED | Member Spotlight
- 145 ARCHIVED | Hosting Blog
- 149 JustGiving® from Blackbaud® Blog
- 97 ARCHIVED | bbcon® Blogs
- 19 ARCHIVED | Blackbaud Luminate CRM™ Announcements
- 161 Luminate Advocacy News
- 187 Organizational Best Practices Blog
- 67 everydayhero Blog
- 52 Blackbaud SKY® Reporting Announcements
- 17 ARCHIVED | Blackbaud SKY® Reporting for K-12 Announcements
- 3 Luminate Online Product Advisory Group (LO PAG)
- 81 ARCHIVED | JustGiving® from Blackbaud® Tips and Tricks
- 1 ARCHIVED | K-12 Conference Blog
- Blackbaud Church Management™ Announcements
- ARCHIVED | Blackbaud Award Management™ and Blackbaud Stewardship Management™ Announcements
- 1 Blackbaud Peer-to-Peer Fundraising™, Powered by JustGiving® Blogs
- 39 Tips, Tricks, and Timesavers!
- 56 Blackbaud Church Management™ Resources
- 154 Blackbaud Church Management™ Announcements
- 1 ARCHIVED | Blackbaud Church Management™ Tips and Tricks
- 11 ARCHIVED | Blackbaud Higher Education Solutions™ Announcements
- 7 ARCHIVED | Blackbaud Guided Fundraising™ Blog
- 2 Blackbaud Fundraiser Performance Management™ Blog
- 9 Foundations Events and Content
- 14 ARCHIVED | Blog Posts
- 2 ARCHIVED | Blackbaud FIMS™ Announcement and Tips
- 59 Blackbaud Partner Announcements
- 10 ARCHIVED | Blackbaud Impact Edge™ EAP Blogs
- 1 Community Help Blogs
- Diocesan Blackbaud Raiser’s Edge NXT® Users' Group
- Blackbaud Consultant’s Community
- Blackbaud Francophone Group
- 1 BLOG ARCHIVE CATEGORY
- Blackbaud Community™ Discussions
- 8.3K Blackbaud Luminate Online® & Blackbaud TeamRaiser® Discussions
- 5.7K Jobs Board