• Resolved black88mx6

    (@black88mx6)


    I have set my description line to 0, as I wish no description to be displayed on the webpage. Would prefer not to have the blank line that uses extra room on my page. Is it possible to completely remove description from displaying including the blank line?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter black88mx6

    (@black88mx6)

    Or is is possible to re-order the description, location fields?

    Thread Starter black88mx6

    (@black88mx6)

    http:\\justdeedeemusic.com

    This should show how it looks now, the best I could do with current configuration parameters.

    Plugin Author bramwaas

    (@bramwaas)

    Hi,

    thank you for using my block and reporting this issue.

    The intention is indeed that the line is not shown if the excerpt length is 0. There is a small error that leaves a line feed (<br>) in this case.
    I’m going to fix this maybe today, probably tomorrow.

    If you don’t want to wait that long, you can also use one of the following work arounds with CSS (similar to the solution for issue ‘Setting colors for event list’)

    IMPORTANT:
    In order to target the CSS very specifically to the simple-ical-block, it is best to enter something unique in the settings of the block/widget under Advanced in HTML ANCHOR, for example “Simple-ical-Block-1” the code translated into a high-level ID of the block.

    1. Just don’t show the unnecessary line feed when excerpt length = 0:
    /*additional CSS for block with HTML Anchor Simple-ical-Block-1*/
    
    #Simple-ical-Block-1 .ical_details br{ 
    display: none;
    }
    /*end additional CSS for Simple-ical-Block-1 */
    
    1. Or do not show the entire description including location. (but after seeing your site I don’t think this is what you want)
    /*additional CSS for block with HTML Anchor Simple-ical-Block-1 */
    #Simple-ical-Block-1 .ical_details { // remove details block that is description and location
     display: none; 	
    }
    
    /*end additional CSS for Simple-ical-Block-1 */

    Regards Bram

    • This reply was modified 10 months, 1 week ago by bramwaas.
    Plugin Author bramwaas

    (@bramwaas)

    Just uploaded version 2.2.1.

    This will solve this issue.

    Regards Bram

    Thread Starter black88mx6

    (@black88mx6)

    Was just starting to dig through the CSS info, but will try the updated version first. TY

    Issue Resolved.

    • This reply was modified 10 months, 1 week ago by black88mx6.
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Description Line’ is closed to new replies.