MyBB Community Forums

Full Version: Drop down menu
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Yo, can anybody make it so this is in a column and white writing etc? just make it look nicer?

what it looks like now:https://gyazo.com/50fdd9566df808c957a77508e5b44edc?token=3bb46fd6744be058d7f70358d567c096

global.css code: 
.enmenuwrap {
  float: right;
  display: inline-block;
  position: relative;
}


.enmenu {
  background: #333;
  display: inline-block;
  padding: 0px 10px;
  position: relative;
  cursor: pointer;
  height: 45px;
  line-height: 50px;
  color: #101010;
  text-decoration: none;
  border-radius: 2px;
  font-family: 'Trebuchet MS',Helvetica,Arial,sans-serif;
  float: right;
}

.ensettings {
  display: none;
  position: absolute;
  right: 0;
  left: auto;
  min-width: 150px;
  background: #101010;
  color: #333;
  top: 50px;
  border-radius: 2px;
  padding: 0;
  margin: 0;
  z-index: 999999;
  font-family: 'Trebuchet MS',Helvetica,Arial,sans-serif;
  box-shadow: 0px 0px 1px #ddd;
}

.ensettings::before {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: "";
  position: absolute;
  border-bottom: 5px solid #e04006;
  top: -5px;
  right: 10px;
  float: right;
}

.ensettings ul {
    padding: 0;
    margin: 0;
}

.ensettings ul > li {
  list-style: none;
  padding: 0;
}

.ensettings ul > li > a {
  text-decoration: none;
  color: #333;
  display: block;
  padding: 0px 5px;
  transition: all 0.2s ease-in-out;
  font-size: 12px;
}

.ensettings ul > li > a:hover {
    background: #FFF;
    color: #333;
}

.ensettings ul > li > a > i {
    float: right;
    display:inline-block;
    line-height: 50px;
}		
ty