Home» Forum» Web & Tech» How do I remove this line?

How do I remove this line?

Back to Web & Tech

i am try to adapt my spacehey layout here.

i am beginning but i have a problem.

i can't remove a line in the part down of nav.

this the part of code that i have.


<style>

.myspace-header .top-nav { background:#4e0b05;

  Border-bottom:none;}

  .myspace-header .main-nav-container { background:#033828;

  border:none;}

  .myspace-header .search-input { background:white;

  color:#033828;

  border:none;}

    .myspace-header .search-button { border: 3px solid #033828;

      background:white;

      color:#033828;}

  .myspace-header .main-nav-wrapper { border:none;}

  .myspace-header .main-nav li a { color:white;

  border:none;}

  .myspace-header .main-nav li a:hover { color:white;

  background:#033828;}

  

</style>


<style>

  .profile-page {

    background-image: url("https://i.ibb.co/LzL5d7WR/daria-friendrewind.jpg"  ) !important;

  background-size: 600px !important;

  background-repeat: repeat !important;

  background-attachment: fixed !important;

    background-position: center center !important;}

 

  main {background:white;

  border:none;}

   </style>

i hope that you understand (english isn't my native language)

Try adding this?  

or you can play around with the code how you like it



.myspace-header .top-nav {

  border-bottom: none !important;

}

.myspace-header .main-nav-wrapper {

  background: #033828 !important;

  border-top: none !important;

  border-bottom: none !important;

  top: 0 !important;

}

.myspace-header .main-nav-container {

  border: none !important;

}

.myspace-header .main-nav li a {

  border-right: none !important;

}

You must be logged in to reply.