Close

How to center the footer copyright text

[email protected]
10 years ago
#3649 Quote
Avatar
  • 14
Hi

How can I center the footer copyright text in the Jewelry 3.1 theme.

I have managed to center the copyright text in the desktop version, but then it is completely incorrect in the responsive side of the theme.

Below is what I entered into the styles.css file

.footer-disclaimer {
  float: left;
  font: normal normal 11px/35px Tahoma, Geneva, sans-serif;
  color: #b68c65;
  margin-left: 370px;

How can I get the copyright text to be in the center in the Desktop theme, without affecting it in the responsive side, as the responsive side is correctly centered

thanks
Support
10 years ago
#3663 Quote
Avatar
  • Moderator
  • 1044
Hi Philip,

You can achieve the center by applying the changes as shown below:

.bottomline .center {
  width: 980px;
  margin: 0 auto;
    text-align: center;
}

The line from above in bold is the one that should be added.

.footer-disclaimer {
  /*float: left;*/
}
.footer-poweredby {
  /*float: right;*/
}

The two floats above in bold are the ones that should be changed(actually commented out).

All these styles you can find in the styles.css

Hope that helps!
[email protected]
10 years ago
#3665 Quote
Avatar
  • 14
Great, thank you

It worked perfectly