Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
You will have to show us your webpage
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
In the “Additional CSS” part of the dashboard, add this:
#header {
text-align: center;
}
#branding {
float: none;
width: initial;
}
#branding img {
width: 45%;
}
https://codex.ww.wp.xz.cn/CSS#Custom_CSS_in_WordPress
That work! Thank you so much, wow I’ve been trying since Saturday!
Last thing….is there any way to make the image slightly larger and also the tag line under the image font a bit larger?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
is there any way to make the image slightly larger
Increase the number in this part of the code:
#branding img {
width: 45%;
}
also the tag line under the image font a bit larger?
Add this:
#site-description {
font-size: 20px;
width: 100%;
}
Thank you so much Andrew, you helped me out tremendously!
If you could help with one very last thing lol, just changing the tag line font color to black
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
You’ll just be adding the ‘color’ style to this bit:
#site-description {
font-size: 20px;
width: 100%;
}
https://www.w3schools.com/cssref/pr_text_color.asp
So to change it black you can do:
#site-description {
color: black;
font-size: 20px;
width: 100%;
}