New Topic

Reply To: Customization (My Website)

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

#911

StartupWP
Keymaster

1. Let’s add the !important declaration to make sure the styles take:

footer li {
  border-right: 1px solid #666666 !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 1px 5px 1px 2px !important;
}

To move the whole footer menu left:

#menu-my-footer-menu {
  margin-right: 100px;
}

2. Apologies, assumed you had a different social code you intended for this area, here’s the code for your Facebook icon:

<a href="http://www.facebook.com/uendicom" id="social-facebook"><img src="http://uendi.com/wp-content/themes/startuppro/images/social/facebook.png" alt="Facebook"></a>

3. Alternatively, you can use any HTML entity here:

#menu-my-categories-menu li a:before {
  content: ">" !important;
  font-size: 10px;
  padding: 0 10px 0 1px;
}

Checkout:

http://www.danshort.com/HTMLentities/index.php?w=arrow

4. Let’s start with:

body nav #s {
  background: url("images/find.png") no-repeat scroll right center #fff;
}

You’ll need to find a magnifying glass icon you want to use. Checkout:

http://findicons.com/

5. Sorry, where’s the exact page you’ve added this to? Not seeing it.