broennimann
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Sixteen] Changing link hover color in site title?Hi,
Thank you, nothing to be sorry about, I wasn’t clear (and a .css noob, so there’s that…).
Ok, I know that it changes color – but not to the color I want. It changes color because in the theme, you can choose a “secondary color” in the theme, and the hover-color for the title changes accordingly. However, this secondary color does also change other things (for example link primary color in text, etc.) I don’t want. So I specifically want to target THIS (and a few other link :hover commands to have a DIFFERENT link hover color throughout the theme (I hope I’m being clear this time).
As you see, I’ve managed to change the link hover color in the sidebar menu, the main menu top right, and the footer. However, I’m struggling to change it in the main menu AND the color of the social network buttons footer, and also the blog links….
This:
.site-title a:hover {
color: #ab2944;
}doesn’t do anything either. And I’ve tried a lot already…
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Subscriber count issueSorry Richard. I just did, here:
https://www.ads-software.com/support/topic/still-got-an-issue-with-subscribers?replies=1#post-4667522
Thank you very much.Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Subscriber count issueStrangely, I don’t get a “download as .csv” link in Jetpack -> Site Stats -> Blog… it just says “Sorry, there are no followers to display.” (which is not true). Any idea what I can do to check my followers?
Forum: Plugins
In reply to: [Jetpack Subscriptions] Subscriptions not workingok, sorry, thanks. will do.
Forum: Plugins
In reply to: [Jetpack Subscriptions] Subscriptions not workingOk, interesting. I just made a test-post (which I deleted again), and lo and behold, I GOT an email about the new post. At least that’s something. Still: No (0) followers in stats, though. What am I doing wrong? Any help appreciated.
Forum: Plugins
In reply to: [Simple Lightbox] Change font? Display image title and (smaller) caption?Thank you very much for your reply. I’ll gladly wait for the updates; this is imho the best plugin for gallerys.
Forum: Plugins
In reply to: Problem with changing font in Jetpack's Twitter WidgetThank you for taking the time to look at it.
Well, it’s not too bad (I’m a sucker for these kinds of details, but I’ll survive :-).Forum: Plugins
In reply to: Problem with changing font in Jetpack's Twitter WidgetSorry for that. It’s up again (I have no idea what happened, my hoster is usually top notch…)
Forum: Plugins
In reply to: Problem with changing font in Jetpack's Twitter WidgetSure, here it is (still work in progress), widget is at the bottom right (and the blog page sidebar):
https://broennimann.eu/I mean the font that just reads “Tweets”. I would love it to be the same font as used in normal widget titles (like “Neue Artikel – New Posts” on the left).
Thank you very much.
Forum: Fixing WordPress
In reply to: How can I post different posts on different pages/menu points?Thanks again – this will do nicely for now.
Forum: Fixing WordPress
In reply to: How can I post different posts on different pages/menu points?Thank you very much.
So if I understand you correctly, I should forget about thinking “pages” and think in terms of “category” which can be turned into menu items and display certain posts that match the category?
Forum: Themes and Templates
In reply to: How to edit text & hover color in Twenty Twelve?Anyone interested: This did it in my child theme’s style.css (pick any color you like, of course):
/*
footer color and hover
*/
footer[role=”contentinfo”] a:hover {
color: #ab2944;
}
footer[role=”contentinfo”] a {
color: #c5bdbd;
}Forum: Themes and Templates
In reply to: How to edit text & hover color in Twenty Twelve?You have helped me – I figured it out. Thank you very much, Andrew!!!
Forum: Themes and Templates
In reply to: How to edit text & hover color in Twenty Twelve?No, sorry, only Firefox and IE on this machine…
Forum: Themes and Templates
In reply to: Problems changing post colour in Twenty TwelveThank you. I actually did it (so proud, I have no idea at all about what I’m doing ;-). If anyone wants to try it in their child theme’s style.css, here’s how I went for dark post colors with a nice dark red hover:
.entry-header .entry-title a {
text-decoration: none;
}
a {
color: #333333;
outline: medium none;
}a:hover {
color: #ab2944;
}