Okay
  Public Ticket #2748523
Box Grid Customization
Closed

Comments

  •  4
    zdenekklika started the conversation

    Hello, I need help with some issues:

    1. I need hide the box grid label above the box grid

    2. I need change fonts for date and time in Box Grid view


    Thanks!

  •  771
    Zhivko replied

    Hi,

    Sorry for the late reply.

    The date time element is using class ".stec-layout-boxgrid-event-timespan". You can alter it via css.

    Example:

    .stec-layout-boxgrid-event-timespan {
        font-family: Arial;
        font-size: 16px;
    }

    Either place the code in your theme stylesheet or in Dashboard -> STEC -> Fonts & Colors -> Custom style tab.

    I'm not sure what you mean by "box grid label above the box grid". Could explain please or send me screenshot.


    Stachethemes Developer

  •  4
    zdenekklika replied

    Hi, ok, no problem :-)

    Here are two screens with described issues, which I need to solve.

    Thanks in advance.


  •  771
    Zhivko replied

    To hide the top menu in your shortcode add "show_top=0" attribute.

    Example:

    [stachethemes_ec show_top=0]

    Stachethemes Developer

  •  4
    zdenekklika replied

    Thanks, this helped.

    Now i have one issue - via picture.

    Thanks a lot for your help.

  •  771
    Zhivko replied

    Hi,

    You could alter this element via css.

    Example:

    /* MONTHS LABELS */
    .stec-layout-boxgrid-event-timespan-big {
        font-size: 10px !important;
    } /* DAYS LABELS */ .stec-layout-boxgrid-event-timespan-big span {
        font-size: 10px !important;
    }

    You can place the custom css in STEC -> Fonts & Colors -> Custom style tab.


    Stachethemes Developer