Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • EG Friend
    #195827

    Hello,

    I’m learning to use Fixel Template but I have two problems.

    First,
    I would like to know if it’s possible on the home page that one module take the size of 2 horizontal and 4 vertical ?

    I tried to modify template.css, creating :

    .fixel-grid .grid-2×4 {
    width: 12.5%;
    max-height: 1208px;
    }

    But it doesn’t function.

    Second,
    I use on a part of my website some K2 Items and there is an issue concerning the pictures like this :

    I don’t want the image be in a pop-up. How can I do ?

    Thanks you very much for your help,

    E. Gaudel


    1. Capture-d’écran-2014-03-16-à-22.26.18
    Css Magician Friend
    #526902

    @gaudel,

    1) With your first problem, please open the templatesja_fixeljsscript.js file and replace:


    items.filter('.grid-2x1').width(itemWidth * 2);
    items.filter('.grid-1x2').height(itemWidth * 2);
    items.filter('.grid-2x2').width(itemWidth * 2).height(itemWidth * 2);
    items.filter('.grid-3x2').width(itemWidth * 3).height(itemWidth * 2);

    with:


    items.filter('.grid-2x1').width(itemWidth * 2);
    items.filter('.grid-1x2').height(itemWidth * 2);
    items.filter('.grid-2x2').width(itemWidth * 2).height(itemWidth * 2);
    items.filter('.grid-3x2').width(itemWidth * 3).height(itemWidth * 2);
    items.filter('.grid-2x4').width(itemWidth * 2).height(itemWidth * 4);

    2) With your second problem, please create the templatesja_fixelcsscustom.css file and add this css rule:

    #k2Container .itemImageBlock .itemImage .modal {
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    left: auto;
    margin: 0;
    padding: 0;
    position: relative;
    top: auto;
    width: auto;
    z-index: 1;
    }

    Hope that helps.

    EG Friend
    #527009

    Thanks you very much !
    It’s perfect !

Viewing 3 posts - 1 through 3 (of 3 total)

This topic contains 3 replies, has 2 voices, and was last updated by  EG 10 years, 8 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum