Display Tweaks?

Home Forums Calendar Products Event Aggregator Display Tweaks?

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #746220
    slayer91
    Participant

    Firstly 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!

    #746528
    Brian
    Member

    Hello 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

    #746568
    slayer91
    Participant

    This reply is private.

    #748711
    Brian
    Member

    Thanks 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

    #758436
    slayer91
    Participant

    Thanks for your help!

    #758674
    Brian
    Member

    Great, 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!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Display Tweaks?’ is closed to new replies.