Hello! Sorry for the English) I wanted to know how to display Copyright Notice elsewhere, what code? Here’s a screenshot http://f-picture.net/lfp/s50.radikal.ru/i127/1411/e6/22c52b32b549.jpg/htm
I created a css code for footer
.site-footer {
width: 1060px;
margin:10px auto;
text-align: center;
text-shadow: none;
}
and I want to display the Copyright Notiche within this code. Thanks in advance!
I advise you to use this CSS instead:
.site-footer .container {
max-width: 1060px;
margin:10px auto;
text-align: center;
text-shadow: none;
}
It does the same as your code but doesn’t break responsiveness.
Where exactly in the page do you want to move the copyright notice? In your screenshot it’s still in the footer.
Thanks for the tip! I wanted to to display his where the code © %year% %sitename% in the screenshot
If you also add padding: 0;
to the code above it should display like you want it to.
thank you very much, Daniel Tara!