sandra-08
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change hyperlink coloursEdit: Forgot to add that is for the Neoclassical skin, but will give you an idea of what to look for.
Forum: Fixing WordPress
In reply to: Change hyperlink coloursMost of your link colors in the posts is found:
.format_text { font-size: 1.3em; line-height: 1.53846em; padding: 0 10px; } .format_text a { color: #0000AA; text-decoration: underline; } .format_text a:visited { color: #AA00AA; background: #FFFFFF; text-decoration: underline; } .format_text a:hover { text-decoration: underline; }Forum: Fixing WordPress
In reply to: 404 acting strangely – redirecting to another part of the siteYour blog probably doesn’t know where/name of the 404 error page. Assuming that you have a valid 404 error page, add a line to your .htaccess file. (change 404.html to the name of your error page)
ErrorDocument 404 /404.htmlForum: Fixing WordPress
In reply to: flowing text around picturesI allow for a caption as well as a padding & border.
.right { display: block; float: right; margin-left: 8px; } .left { display: block; float: left; margin-right: 8px; } .caption { margin: 5px; padding: 5px; border: solid 1px #999; background: #CCC; font-size:80%; color: black; line-height: 135% } <div class="caption left"><img src="http://url.com" alt="wp">Text</div>Forum: Fixing WordPress
In reply to: Parts of custom CSS ignoredI have already done that and also used myquote and testquote instead of bquote. I am a blog and forum skinner, so I understand CSS and the hierarchy of assignment very well.
I have also defined bquote a:link a:hover a:visited etc with color different than the post links because of the background change. The bquote link colors work.
Regards, Sandi