[Replacemant] Logo and containter

Hello there!
This is my first post on this forum so let me express how awesome colorlib is! Woo woo!

I’ve searched the forums to find similar problem to mine but I failed to find one. I would like to replace logo with navbar - change order of these two. I’d like logo on the very top and then navbar - below. Is it possible to implement without changing core code of the theme?

Visualization of my idea (using my advanced Paint skills!) in the attachment.

Here is my website: http://serwer17059.lh.pl/

Have a good day!

Hello there,

I hope you are doing well today.

You can use the following CSS code to push the logo o the top by going to Appearance > Customize > Additional CSS and pasting it there however this may cause issues one the page because we are forcing the elements to be moved.

/*Logo push*/
header {
    display: table;
}

.navbar.navbar-default {
    display: table-footer-group;
}

Best Regards,
Support

Thanks, it worked but layout of the page got messed up (align to left, used to be centered).- > http://serwer17059.lh.pl/

How do I center container and logo sections? :slight_smile:

Have a good day!

Please use following custom CSS code to centre align them.

#masthead {
    width: 100%;
}

Hi there!

It worked like a charm, thank you! However, post headings got displaced - they are no longer centered.

Could you please help me to center heading of posts? Please find attached file with visualization of my problem.

Thanks in advance,
Have a good one!

Achieved my goal with this code:

.page-header  {
position: relative;
    left: 35%;
}

Anyways, it worked. I am satisfied with my layout now.

Thank you very much for help. Much appreciated.
Have a good day :slight_smile:

EDIT: No wait, it does not do the work for posts in 2 columns.

Alright, done it with this code:

.entry-header  {
margin: 0 auto;
}

Thanks for your help! :slight_smile:

You are most welcome here :slight_smile: