witzelwords
Forum Replies Created
-
Forum: Plugins
In reply to: wysiwyt text sizeOk, this finally worked for me. It changed the default font size in the WYSIWYG text editor, according to the font style and size entered. The only catch is that I had to restart my browser (or empty the cache) in order for the changes to be visible. Simply forcing a refresh of the page didn’t seem to work and I almost gave up on the process. At long last, the horrible font used by the WordPress text editor is changed.
Forum: Fixing WordPress
In reply to: My Text in my post is Too Bunched UpTry replacing your body CSS with the following. I saw you didn’t have a line height specified in your existing CSS. To change the line height, just change the number, which is now set at 15:
body
{
font: .75em “Lucida Grande”, “Lucida Sans Unicode”, Sans-Serif;
font-size: 0.8em;
line-height: 15px;
background: #5C6A74 url(‘images/bg1.gif’);
}Forum: Fixing WordPress
In reply to: My Text in my post is Too Bunched UpTry this: Go into your WordPress admin area and to the the Design/Theme Editor. Look for the Stylesheet on the right (style.css) and click on the title. The code for the basic styleheet should appear in the html window. Look for a line of code that looks something like this, defining the body:
body {
width: 800px;
margin: 0 auto;
font: .75em “Lucida Grande”, “Lucida Sans Unicode”, Sans-Serif;
text-align: center;
background: #fff url(images/bg.gif);
color: #808080;
line-height: 21px;
}
CHANGE the “line-height” to a larger number. Mine used to be 17 here and I changed it to 21. Then, click “Update File” button and view your blog. Be sure to refresh your browser or you will still see the same old line height. You may have to clear your cache before you see the changes. For your theme, it may look a little different, but there should still be “line-height” somewhere in the stylesheet that you can modify.