Right search bar

Hello, I try to put the search bar right but it doesn’t work. I customized my CSS like that but it doesn’t want to move. I want there to be space between the “about” and the search bar.

.nav-search {

position: absolute;
right: 5px;
top: 0;
}

My website : http://seiraz.com/

Help me please. Thank You

Hi @sarah91,

I hope you are well today and thank you for your question.

To achieve this try changing your above shared CSS code as following.

.nav-search {
    position: absolute;
    right: -40px;
    top: 0;
}

Best Regards,
Movin

Thank you :slight_smile:

You are most welcome here :slight_smile: