Forum Replies Created
-
Mod
That is definitely not a theme function.
It’s possible that you have a bad plugin (the only plugins that get thoroughly vetted come from wordpress.org at http://wordpress.org/plugins/), or that you have been hacked or infected.
You might want to start looking through these resources:
- https://codex.wordpress.org/FAQ_My_site_was_hacked
- https://wordpress.org/support/topic/268083#post-1065779
- http://smackdown.blogsblogsblogs.com/2008/06/24/how-to-completely-clean-your-hacked-wordpress-installation/
- http://ottopress.com/2009/hacked-wordpress-backdoors/
Additional Resources:
Mod
Quote:This resolved itself by the next morning. I have no idea what the problem was.It is probably a caching issue. When you make changes to CSS, always be sure to clear your browser cache (and your server cache if you’re using one) before reloading the page.
Mod
Mod
Mod
Glad to help! Cheers!
Mod
I remember that setting, but I don’t remember when it disappeared or where it went to. Weird.
This code may work:
#header .header_title,
#header .header_desc {
display: none;
}Mod
Try disabling all other plugins and activating only one of these plugins at a time. Also, try the default 2016 theme to rule out a theme-specific issue.
Which plugins specifically are you seeing this with?
Mod
Since that is a commercial plugin, we would need to see a page/post where this behaviour is happening.
Mod
You can copy and paste the above code in Franz Josef’s custom css option. It should work, once you save your options and refresh the page.
There is a good introduction to the text-shadow property here:
https://css-tricks.com/almanac/properties/t/text-shadow/
w3schools has a not-quite-as-good introduction, along with a sandbox you can experiment with here:
http://www.w3schools.com/cssref/css3_pr_text-shadow.asp
You can also play around with a generator here:
http://css3gen.com/text-shadow/
(If you like what you come up with there, you can copy/paste the code from there quite easily, as well. There are a lot of other CSS3 things to play with there as well.)
Mod
You can add a text shadow to the
.carousel .slide-titleclass, I believe:.carousel .slide-title {
text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
}Will add a 2px white (#fff) shadow on all four sides to the slide title, with no fuzziness.
You need to use multiple text-shadow values to target all sides.
