Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #16465
    SoL
    Member

    hi there,

    i tried to customize the witdh of my columns.

    did it that way:

    .three-columns #primary {
    width: 690px;

    }
    .three-columns #secondary {
    width: 200px;

    }
    .three-columns #third {
    float: left;
    width: 240px;
    }

    my problem is that if i reduce the size of the third column and increase the size of the primary column like that:

    .three-columns #primary {
    width: 730px;

    }
    .three-columns #secondary {
    width: 200px;

    }
    .three-columns #third {
    float: left;
    width: 200px;
    }

    the gap between primary and third column increases – the gap between primary and secon column decreases.

    how can i fix this in order to have same gap between the columns?

    #16483
    Sakin
    Keymaster

    @SoL: Send me your site URL and then I will check in.

    #16491
    SoL
    Member

    here it is:
    http://sol-hh.de

    #16494
    Sakin
    Keymaster

    @SoL: I recommend it not to change it. As it’s responsive and then you have to change as per the devices. So, you need to add like the below:

    @media screen and (min-width: 1225px) {
    .three-columns .content-sidebar-wrap {
        float: right;
        width: 960px;
    }
    .three-columns #primary {
        width: 730px;
    }
    .three-columns #secondary {
        width: 200px;
    }
    .three-columns #third {
        width: 200px;
    }
    }
    #16513
    SoL
    Member

    – solved –

    THX!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Columns’ is closed to new replies.