coehl
Forum Replies Created
-
As an update, I checked the code in Opera and it was clean as a whistle. So nobody else was seeing what I was. There was, apparently, some extension in Chrome that I’d enabled that may have been compromised and was more than likely obtaining a lot of my info, but it was no risk on the webhost/website side.
I apologize for even suspecting this amazing plugin especially, it is very nice and I will be using it for years to come. 🙂
I appreciate the speedy response. After finishing my MWB scan, I noticed that the code on inspection was much different and cleaner than Chrome was showing me before. I’m concerned that these elements were actually being applied to my browser, client side, and trying to remain hidden. Now I need to be sure of what’s going on. For later people that stumble here on searches, I’ll post an update later.
Forum: Themes and Templates
In reply to: Posts are not displaying formattingAs it turns out, the theme’s CSS simply didn’t have any provisions for these formatting types and I overlooked that. Simple stuff. Added the following to the beginning of the stylesheet.
blockquote {
margin: 0 0 0 10px;
padding: 0 0 0 50px;
background: transparent url(images/bg-blockquote.png) no-repeat left top;
font-style: italic;
}
em { font-style: italic;}
code {font-family: “Courier New”, Courier, serif;}
strong {font-weight: bold;}Create an image for the quotation marks and save it as bg-blockquote.png, save it with the images.
Done.