Bosworthsgc
January 19, 2017 at 4:44 am
Hi
I have the premium and have installed both the grid view and list view
I am currently building a coach trip page https://bosworthsgc.co.uk/coach-trips
I have two problems
First when you hover over the image, the text that shows up is too big
Can you advise how to shrink this down please
Second when you look at the list view, the Book button is same colour as background – can you advise where I would change this please
I currently have a fatal error issue when tyring to book but this is on a different thread
Thanks
Tony
January 19, 2017 at 4:58 am
Add New Note to this Reply
Hi there,
First when you hover over the image, the text that shows up is too big
Can you advise how to shrink this down please
You can fix that with some CSS, something like this should help:
.ee_grid_box a.darken span h2 {
line-height: 1.5;
font-size: 1em;
}
Second when you look at the list view, the Book button is same colour as background – can you advise where I would change this please
That’s from the defautl bootstrap styles within your theme, you can override that using something like:
#ee_filter_table .a_register_link {
color: #444;
}
We recommend using either the My Custom CSS or Reaktiv CSS Builder plugins to add custom styles such as these.
Bosworthsgc
January 19, 2017 at 5:16 am
Add New Note to this Reply
Thank you Tony
Is there also a way to change Register Now to Book Now – couldn’t see where to do this
Thanks
Tony
January 19, 2017 at 5:19 am
Add New Note to this Reply
Sure, you can use the button_text attribute on the shortcode to set your own string, so something like this:
[ESPRESSO_GRID_TEMPLATE button_text="Something here?"]
Bosworthsgc
January 19, 2017 at 5:23 am
Add New Note to this Reply
Brilliant – thank you
Tony
January 19, 2017 at 5:32 am
Add New Note to this Reply
You’re most welcome 🙂