New Topic

Reply To: Customization (My Website)

Home › Forum › Customization › Customization (My Website) › Reply To: Customization (My Website)

#839

StartupWP
Keymaster

1. Change:

#menu-my-list-of-categories li li:before {
  content: "▶";
  padding: 16px;
}

to:

#menu-my-list-of-categories li li {
  content: "▶";
  padding: 0 0 0 13px;
}

2. Use:

#menu-my-list-of-categories .sub-menu {
  display: none !important;
}
#menu-my-list-of-categories li:hover .sub-menu {
  display: inline !important;
}

3a. Use:

#content input[type="submit"], #content input[type="reset"], #container #searchsubmit, .button, #new-topic {
  background: none repeat scroll 0 0 #666666;
  border: 0 none;
  box-shadow: none;
}

3b. When editing your form in the Contact Form 7 options, wrap the asterisks with a span like so:

<span class="aster">*</span>

Then add this CSS:

.aster{color:#FF0000}

4. You’ll either want:

html {
  border: 10px solid #000000;
}

Or:

#container {
  border: 4px solid #000000;
}

https://startupwp.com/topic/customizing-your-theme/