dnissan
Member-
Content Count
51 -
Joined
-
Last visited
Everything posted by dnissan
-
The solution above didn't work for me. There was no "Business Settings - Promote - Menu Embed" option when I logged into my squareup.com account. Instead, I did this: Log into Squareup.com Go here: https://squareup.com/store/admin/selector Select your page Create your store front. Here you can create your merchandise lists, products, services, donations, add photos, contact information, location store, refund policy, etc. etc. You can then link your customers to that page. I used a button (Go to Store -->). I also created a subdomain through my domain provider, and connect it to that sto
-
Out of curiosity, why is it bad code?
-
Replace Image on hover overlay
dnissan replied to hannamathilde1570047972's question in Coding and Customization
Bernard, I'm looking for a similar answer, looking forward to your response. As far as I can tell, she's wanting a different picture to appear - but she'll clarify. https://answers.squarespace.com/questions/77492/text-to-appear-on-hover-of-image -
How can I display a block/text when a user hovers or clicks on an image? I found a few good posts. Here and Here I also found external sources. Each place I went provided a solution similar to this: http://jsfiddle.net/p87g3fey/ Follow the link above to see it in action HTML <a id="thumbnail" href="#"> <img src="http://dummyimage.com/150x150/0066ff/fff"></a> <div id="title">filename.jpg</div> CSS #thumbnail { display: block; width: 150px; height: 150px; } #thumbnail:hover + #title { display: block; } #title { display: none; color: #ffffff; backgrou
-
How can I change the calendar color?
dnissan replied to dnissan's question in Coding and Customization
Bumping this, because really, I can't be the only one wondering how to do this -
How can I change the calendar color?
dnissan replied to dnissan's question in Coding and Customization
Any answers? If I'm not using the correct selectors, where could I find that information for the template I'm using (Bradford)? -
How can I change the calendar color?
dnissan replied to dnissan's question in Coding and Customization
Oh, the selectors not being the correct ones. Didn't think of that. The template I'm using is Bedford. www.p2sk.ca is the site. Thanks for the reply! -
How can I change the calendar color?
dnissan replied to dnissan's question in Coding and Customization
Alright, so, no solutions here! Perfect. lol -
How can I change the calendar color?
dnissan replied to dnissan's question in Coding and Customization
Anyone? Any ideas? -
I've seen a handful of answers on this question. Here are two: How to change font color of events in calendar view? For background color add this: .eventcal .eventcal-content-wrapper { background: #000000; } For day number color add this: .eventcal .eventcal-daynumber { color: #e7d073; } How to change background color of current day indicator? Try adding this CSS to your custom CSS: .eventcal .eventcal-today { background: red; color: black !important } My problem: Those don’t work with me. I don’t know what I’m doing wrong. I added these to the Cu