Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Your CSS selector is incorrect.
If you’re trying to target this element:
<div class=”site-info”>
You need to use “site-info” as the selector (it has to directly match with the HTML class):
.site-info {
Hello, @jonathanss
You can use .site-info as…
.site-info {
text-align: center;
}
Thanks.
.site-info{
text-align:center;
}
———–
So it was that simple 🙂 just removing the .container!
Big thanks, first time poster here and wow! Impressive response time!