New Topic

Reply To: Help with Header, Child theming, images

Home › Forum › Customization › Help with Header, Child theming, images › Reply To: Help with Header, Child theming, images

#2220

StartupWP
Keymaster

1. Under Appearance > Widgets, remove/delete that widget from the Footer Sidebar.

2. Update:

.entry-content p {
  background: none repeat scroll 0 0 #cab1e2;
  border-radius: 5px;
  font-family: Aclonica;
  font-size: 16px;
  padding: 2%;
}

to:

.entry-content p {
  background: none repeat scroll 0 0 #cab1e2;
  border-radius: 5px;
  font-family: Aclonica;
  font-size: 16px;
  margin: 0;
  padding: 2%;
}

3. Update:

.purple-box {
  background: #cab1e2;
  padding: 2%;
}

to:

.purple-box {
  background: #cab1e2;
  border-radius: 10px;
  font-family: verdana,sans-serif;
  padding: 2%;
}

4. Use an empty Text widget from under Appearance > Widgets.

5. #cab1e2 is a hexadecimal color code. You can select others easily with this tool:

http://www.w3schools.com/tags/ref_colorpicker.asp

6. The extra one is likely your child theme. We recommend including the word “Child” in this theme’s name to avoid confusion.

You’re welcome.