Forum Replies Created
-
AuthorPosts
-
Bryan HadawayKeymaster
What’s the website? If it’s too spammy or objectionable it might go against the AdSense Terms of Service:
https://www.google.com/adsense/localized-terms
Here’s some tips others have left about this issue:
Bryan HadawayKeymasterYou’re welcome.
Bryan HadawayKeymasterAt this point it’s a little beyond the scope of what I can assist with for free, sorry and good luck with the project.
Bryan HadawayKeymasterIn that case, all you need to do is throw .home in front:
.home nav ul li a { background: none repeat scroll 0 0 #eee; border-radius: 50%; color: #777; display: block; float: left; font-family: “Raleway”,sans-serif; font-size: 100%; font-weight: 500; height: 120px; line-height: 120px; margin: 1%; padding: 0; text-align: center; width: 120px; }
Bryan HadawayKeymasternav ul li a { background: none repeat scroll 0 0 #eee; border-radius: 50%; color: #777; display: block; float: left; font-family: "Raleway",sans-serif; font-size: 100%; font-weight: 500; height: 120px; line-height: 120px; margin: 1%; padding: 0; text-align: center; width: 120px; }
That should get you started.
You’ll notice instantly that it opens a new can of worms for long link titles and dropdown menus. I would recommend reworking the titles so they’re all one word and get rid of traditional dropdown menus.
Good luck.
Bryan HadawayKeymasterI understand what you mean now. The word “header” can be confused with multiple things. Technically, you’re right, it is a header, but for future reference most people refer to it as the site title and this will help move things along quicker.
There’s no built in option either from the theme or WordPress to customize the site title and the proper way to customize is with CSS. So the way your friend helped you before is the proper way to handle it.
The reason you may have lost the customization is from upgrading, assuming you weren’t using a child theme (http://codex.wordpress.org/Child_Themes).
Here’s what you’re looking for:
#site-title a, #site-title h1 a, #site-title h1 { color: #FF0000; }
Bryan HadawayKeymasterNot sure I understand what’s going on then, can you please share a screenshot of the problem?
Thank you.
Bryan HadawayKeymasterIt looks like the correct theme color is triggering for the menu, but if you want to manually style it:
nav { background-color: #777 !important; }
And of course change the color code.
Bryan HadawayKeymasterUpdate:
nav ul li a { border-right: 1px solid #333; color: #000; display: inline-block; font-family: Arial; font-size: 93%; font-weight: 600; line-height: 200%; margin-left: -0.3%; padding: 0 1%; }
to:
nav ul li a { border-right: 1px solid #333; color: #000; display: inline-block; font-family: Arial; font-size: 90%; font-weight: 600; line-height: 200%; margin-left: -0.3%; padding: 0 1%; }
We’ve just lowered the
font-size
and then add:nav ul li:last-child a { border-right: 0 none; }
Bryan HadawayKeymasterLink to your site please and I’ll have a look.
Bryan HadawayKeymasterYou’re welcome.
Bryan HadawayKeymasterI would recommend using a plugin like:
https://wordpress.org/plugins/advanced-post-list/
For this. There are many others to try if this one doesn not fit the bill exactly.
Bryan HadawayKeymasterYou’re welcome.
Bryan HadawayKeymasterThis is actually possible out-of-the-box.
From your WP admin, go to:
Appearance > Widgets
Then drag the “Categories” widget to your sidebar and check the box that says “Show post counts”.
Bryan HadawayKeymasterThat’s correct, the theme is translation-ready, but you’ll need to prepare the language files.
Here’s a great tool that makes the job easy:
-
AuthorPosts