Home Forums Free Themes WEN Business Three Columns Layout not Working

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #32525
    neocharles
    Participant

    At least – I don’t think it is working properly.

    When I choose Three Columns, it places the “text” of the page full width at the top under the menu, and then the widget contents are below the text on the left/right.

    Is this normal, or is there something I should be looking at to fix this?

    #32546
    wensolutions
    Keymaster

    Hello @neocharles

    As far as we have tested the issue locally it is working fine .

    So can you post your site URL so that we could properly inspect your issue and provide the fix?

    Best Regards!!

    #32576
    neocharles
    Participant

    I figured it out – it was a css ‘hack’ I had in there to center the copyright information..

    .col-sm-6 {
        width: 100%;
    }

    Any shot there’s another way to center that without breaking columns?

    I already have

    I have the following in there which centers the text, but within it’s column, so to speak, but not centering on the entire page.

    .copyright {
    text-align: center
    }

    *edit*

    Would this do the trick, without causing any issues?

    .site-footer .col-sm-6 {
        width: 100%;
    }
    #32861
    wensolutions
    Keymaster

    Hello @neocharles,

    You can use the below CSS which you have mentioned as it will target the footer sections only .

    .copyright {
    text-align: center
    }
    
    .site-footer .col-sm-6 {
        width: 100%;
    }

    And the CSS given below will distort the entire layout of the site.

    .col-sm-6 {
        width: 100%;
    }

    So please remove them and use the last two CSS you have mentioned.

    Hope this helps.

    If this doe not solve your issue, please let us know.

    Best Regards!!

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.