Okay
  Public Ticket #1922187
Logo and category section main page
Closed

Comments

  •  2
    Lau started the conversation

    Hi Paul,

    Thanks for you work into making this beautiful template! I am using it to design a website for a friend and was hoping if you could help me with the following:

    Might it be possible to wipe the logo-section all together, so the project menu on the left is on the same level/height as the category section on the top? Don't know if that requires customisation, maybe you have some pointers regarding that?

    best and thanks,

    L

  •  291
    Paul replied

    Hi Lau!

    I am not sure if I understand it correct. Did you mean you would like to remove the logo (and site menu) section and move the portfolio category menu, which is by default on the left, up to the top at the same level of the portfolio images?

    If so, you can use custom CSS like this to adjust them:

    #side-container {
        display: none;
    }
    .portfolio-category-wrapper {
        margin-top: 0 !important;
    }
    

    I hope it helps!

    Regards,
    Paul

  •  2
    Lau replied

    Hi Paul, 

    thank you for coming back to me so quickly. 

    Sorry, I confused the two elements, I meant moving the site-menu section (on the right) up to the top, thereby removing the logo. Ideally yes, I'd like to have the site menu on the same level als the portfolio images  :)

    Would that be possible as well?

    Many thanks,

    Lauranne


  •  291
    Paul replied

    Sure! Please try this custom CSS instead:

    @media only screen and (min-width: 1151px) {
    #side-container {
        top: 0;
        margin-top: 4%;
        height: auto;
    }
    }
    

    Now the menu section should move up to the top.

  •  2
    Lau replied

    amazing — thank you Paul!

  •  291
    Paul replied

    You're welcome, Lauranne! Happy to help!smile.png