Thread Starter
vreish
(@vreish)
Ok, I solved this one as well, but I had to edit the CSS directly so I’m sure there’s probably a much better solution I couldn’t find. As it was I just kept a careful record of the original in case I need to backtrack.
I opened the Footer template in the editor and wrote my own copyright line right before the following line:
<?php
if ( ! dynamic_sidebar(‘site-footer’))
Further down, I deleted the ” $s ” on this line:
printf(__(‘%1$s • Powered by %2$s with %3$s’, ‘inkblot’),
This added my notice and removed the original one.
Thread Starter
vreish
(@vreish)
Ok, fixed it myself, at last. I centered the top banner, even on large monitors, as well as the link menu by dropping the following CSS into the child theme. It shrinks the banner a bit, but seems to work well otherwise.
.menu {
display: table;
margin: 0 auto;
}
.banner {
margin-left: auto;
margin-right: auto;
width: 85%;
background-color: #000000;
}