• Resolved thienmai1325

    (@thienmai1325)


    Hi Guido,

    The first, I really liked your theme.
    It’s useful to me, I’m trying my site from this, it’s ok with phone, table, laptop.
    I would like it can be aligned with larger desktop ( > 1200 px)

    Could you please help me this problem?

    Thanks in advance!
    KuBo

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Guido

    (@guido07111975)

    Hi Kubo,

    You can change the width of this theme by adding some custom CSS in the Customizer.

    Example changing width from 1200px to 1400px:

    
    #container {max-width:1400px;}
    

    Or to full width:

    
    #container {max-width:none;}
    

    Guido

    Thread Starter thienmai1325

    (@thienmai1325)

    Thanks Guido for helping!

    Actually I tried it before asking you, but it doesn’t work.
    Now, when I launched my site, the change is effected with you helps.

    I changed as below.

    @media screen and (min-width: 1200px) {
        #container {max-width:1400px;}
    }

    KuBo

    Theme Author Guido

    (@guido07111975)

    Hi KuBo,

    It should work without the extra media condition as well, only with:

    
    #container {max-width:1400px;}
    

    This condition will now apply to all screen sizes.

    Guido

    Thread Starter thienmai1325

    (@thienmai1325)

    Thanks Guido,

    It was already resolved.

    KuBo

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Make the site is responsive with large desktop’ is closed to new replies.