Home › Forums › Calendar Products › Event Aggregator › Display Tweaks?
- This topic has 5 replies, 2 voices, and was last updated 11 years, 7 months ago by
Brian.
-
AuthorPosts
-
September 16, 2014 at 6:01 am #746220
slayer91
ParticipantFirstly great plugin! Just a few tweaks I would love to make if someone could assist?
>How can I tweak the thumbnail image dimensions to meet the native aspect ratio of the Facebook imported image. Ie make the thumbnail landscape so none of the imported image is lost?
>The tool tip (pop up info) on events near the top of the calendar view sits behind the search bar covering information? How can i make the tool tip display over the top?
>Reduce the amount of blur in the events list view?
Thanks for your time!
September 16, 2014 at 10:03 am #746528Brian
MemberHello slayer91,
I can help you out with your questions. I will go through them one by one.
>How can I tweak the thumbnail image dimensions to meet the native aspect ratio of the Facebook imported image. Ie make the thumbnail landscape so none of the imported image is lost?
What page are you talking about making it landscape? Can you please provide a link? Most likely it would mean adding css to make the height auto and then set the width.
>The tool tip (pop up info) on events near the top of the calendar view sits behind the search bar covering information? How can i make the tool tip display over the top?
By default the tooltops should be over the search bar, do you have a link where I can see this happening? It looks like again a css conflict, but hard to know without seeing it.
>Reduce the amount of blur in the events list view?
Not sure what you mean by this, do you have a link as an example?
Sorry to be only asking for examples, but these are seem to be related to css and that means unique to your site and theme.
Please let me know about the examples and I can take a look and help you out.
Thanks
September 16, 2014 at 10:20 am #746568slayer91
ParticipantThis reply is private.
September 17, 2014 at 9:27 am #748711Brian
MemberThanks for proving that information.
I took a look at your site and this is what I came up with:
Calendar View – ToolTips
It appears you have css with overflow:hidden for all tables.Add this fixes it for the Events Calendar.
table.tribe-events-calendar {
overflow:visible;
}For the other two you are going to have to modify the single-event.php template found in the list view directory of the plugin.
Follow our Themer’s Guide to get the file into your theme.
https://theeventscalendar.com/support/documentation/events-calendar-themers-guide/
Then you are going to have to modify this line for the image:
<?php echo tribe_event_featured_image( null, ‘medium’ ) ?>
You will have to change medium to a customize size using the WordPress function add_image_size();
http://codex.wordpress.org/Function_Reference/add_image_size
The blurb is using the WordPress function the_excerpt();
http://codex.wordpress.org/Function_Reference/the_excerpt
So you will have to either change that or modify it to get it to show less content.
That is about all we can do to help on this customization. If you would get stuck somewhere or have a question we can always help out though.
Thanks
September 22, 2014 at 4:09 am #758436slayer91
ParticipantThanks for your help!
September 22, 2014 at 7:17 am #758674Brian
MemberGreat, glad it helps, I am going to go ahead and close this ticket, but if you need any other on something else please post a new ticket.
Thanks!
-
AuthorPosts
- The topic ‘Display Tweaks?’ is closed to new replies.
