Mckinley Theme text alterations
-
Hello,
I am using Mckinley theme on wordpress.com and would like to make a couple of minor alterations with regards to the following site:
1. I have uploaded a gallery into the home page but i can’t figure out how to centre it
2. I’d like to remove the page headings from all pages
3. I’d like to change all type colour (navigation bar and body) to the following colour #714997
Thanks in advance :)
The blog I need help with is: (visible only to logged in users)
-
Hi there, you are not allowed to hide the WordPress.com and theme footer credits per our Terms of Service (#11). Please see the Frequently Asked Questions on the Custom Design support page for more information.
You are allowed to restyle the footer credits to better fit with your design as long as they remain readable. If you would like help with that, please let us know. In the meantime though, can you remove the following from your custom CSS please?
footer.entry-meta, #colophon { display: none; }1. I have uploaded a gallery into the home page but i can’t figure out how to centre it
The misalignment is because the size of “medium” images is set at 300px at Settings > Media. Go to that page in your dashboard and set change the height and width for the medium images to 348.
2. I’d like to remove the page headings from all pages
The following will remove the titles from all static pages.
.page .entry-title { display: none; }3. I’d like to change all type colour (navigation bar and body) to the following colour #714997
I think this will catch all text, but if it doesn’t just let me know.
body, h1, h2, h3, h4, h5, h6, .entry-title { color: #714997; } -
Thanks for your help
I have reinstated the footer
Everything worked except the main body colour has changed but not the navigation bar?
Also now that the page headers have gone is there a way to raise the main body so it is closer to the navigation bar?
Thanks
Andy
-
Oops, I seem to have forgotten to copy and paste that CSS for you. The following will change all menu text except for the current page menu item, which typically has a different color to act as a visual clue to visitors that they are on that page.
.nav-menu li a { color: #714997; }If you also wish to change the color of the current menu item, then add the following and adjust the color as desired. I’d suggest keeping with the standard of using a slightly different color to indicate which page the visitor is on, but that is up to you.
.nav-menu li.current_page_item a { color: #cc0000; }If you wish it the same color as the others, you can differentiate the current page by making it bold with the following.
.nav-menu li.current_page_item a { color: #714997; font-weight: 600; }
- The topic ‘Mckinley Theme text alterations’ is closed to new replies.