moving the title to the center and larger fonts
-
Hi there! My title “VIRGINIA FAMILY DENTISTRY” is too far left. I would like this centered. Could someone help me with that code? Thank you!
The blog I need help with is: (visible only to logged in users)
-
Could you please provide a link to your WordPress.com site? The one I see attached to this account — center4smile.wordpress.com — doesn’t have that title. Thanks!
-
-
Hi @drmjafari!
Give this CSS a try – it’s designed to only affect larger screens (centering the title on small screens would make it overlap your menu, since they’re on the same line)
@media screen and (min-width: 960px) { .site-branding { max-width: none; float: none; margin: 0 auto; } .site-title { text-align: center; } .main-navigation { margin-top: -21px; } } .site-title { font-size: 20px; }The font size will apply on smaller screens as well though :)
- The topic ‘moving the title to the center and larger fonts’ is closed to new replies.