DanPrime Posted April 2, 2023 Posted April 2, 2023 Hi all, I was wondering if you could help me, I'm currently using the Pacific template on 7.0 and I am trying to add an image block to the to the event info bar on the left hand side of an events listing (where I have drawn a red box on the image), from what I can see there isn't a way to do this natively so I was wondering if there is a way to put one in with CSS? Thanks for your help 🙂
beatrizc Posted April 3, 2023 Posted April 3, 2023 Hey @DanPrime! You can add an image there via CSS, if it's NOT meant to be a clickable element. Otherwise you'll need JavaScript. If it's just an image what you're after, this code should help you get there: .eventitem-column-meta::after { background-image: url(IMAGE.PNG); background-position: center; background-repeat: no-repeat; background-size: contain; content: ''; display: block; height: 200px; width: 100%; } You'll need to: Replace IMAGE.PNG with the URL of the image you want to use. Modify the height property to make the image bigger or smaller (horizontally it'll reach a maximum width that matches the sidebar content) Change background-position to left or right, if you need to realign the image. ------------------- Note that the code, as is, will apply to ALL event items inside your site. Therefore ALL of them will have the same image showing in that area. If you want to narrow things down to ONE event, you can include the Page ID in your code, like so: #page-id-goes-here .eventitem-column-meta::after { background-image: url(IMAGE.PNG); background-position: center; background-repeat: no-repeat; background-size: contain; content: ''; display: block; height: 200px; width: 100%; } If you need help finding your event's page ID, you can check out this post to know where to look for it. Hope this helps! DanPrime and tuanphan 2 Squarespace Coding Expert | Coding the heck out of Squarespace, one wtf at a time. ☞ Search through The Codebase to learn new CSS tricks and awesome customizations. ☞ Get +150 mini-plugins ready to copy-paste to fix or tweak your Squarespace site. ☞ Got a rare, medium rare or fully cooked idea for your client's project? Let's make it a reality. Website | Youtube
tuanphan Posted April 7, 2023 Posted April 7, 2023 If you use a Business Plan or higher, you can add this to Code Injection > Footer. The code will grab Event Thumbnail & Move to position in your screenshot <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script src="https://code.jquery.com/jquery-3.4.1.slim.js"></script> <script> jQuery(document).ready(function ($) { a = $('meta[property="og:image"]'); a.attr("content", a.attr("content").replace("http", "https")); var t = a.attr("content"); $('meta[property="og:description"]').attr("content"); $('<div class="event-banner"><img class="event-banner-image" src="' + t + '"></div>').insertAfter("ul.eventitem-meta.event-meta.event-meta-address-container"); }); </script> <style> .event-banner img { width: 80%; height: auto; } </style> catalienne, ConnorJD and DanPrime 2 1 Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
ConnorJD Posted April 21 Posted April 21 Hi @tuanphan, this is super great, I was wondering if there's a way hav the image above the event title?
tuanphan Posted April 22 Posted April 22 On 4/21/2024 at 2:49 PM, ConnorJD said: Hi @tuanphan, this is super great, I was wondering if there's a way hav the image above the event title? Yes. In this position? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!)
flying_v Posted August 21 Posted August 21 On 4/7/2023 at 1:47 AM, tuanphan said: If you use a Business Plan or higher, you can add this to Code Injection > Footer. The code will grab Event Thumbnail & Move to position in your screenshot <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.1/jquery.min.js"></script> <script src="https://code.jquery.com/jquery-3.4.1.slim.js"></script> <script> jQuery(document).ready(function ($) { a = $('meta[property="og:image"]'); a.attr("content", a.attr("content").replace("http", "https")); var t = a.attr("content"); $('meta[property="og:description"]').attr("content"); $('<div class="event-banner"><img class="event-banner-image" src="' + t + '"></div>').insertAfter("ul.eventitem-meta.event-meta.event-meta-address-container"); }); </script> <style> .event-banner img { width: 80%; height: auto; } </style> Hi tuanphan, Is there a reason this would only work after a page refresh? It otherwise works perfectly, but will not work on first page load. Thank you
flying_v Posted August 22 Posted August 22 Turning off Ajax Loading seemed to resolve the problem. Not sure if there is a workaround, but I'll leave it off for the time being.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment