Stefanie
Forum Replies Created
-
Forum: Installing WordPress
In reply to: WordWrap around images not workingThe way I align images to the right and have the text wrap around them is like this:
<img src="xxx" alt="xxx" title="xxx" style="margin: 10px 0px 10px 10px" align="right" width="xxx" height="xxx" border="0" />
Forum: Fixing WordPress
In reply to: Searching content loaded with phpAnyone have any ideas?
Forum: Fixing WordPress
In reply to: Style ‘WP Contact Form’ ?The classes are as follows:
.contactform
This is the overall contact form. If you want a background behind the form, you would put it here..contactleft
This is where the labels for the input boxes (Name, etc.) are..contactright
This is where the input boxes are located..contactform input
This would be the class for the input boxes (everything except for the message box)..contactform textarea
This is the class for the message box.For an example, this is what I have for my css for this plugin:
.contactform { position: static; overflow: hidden; background: url(images/cformbg3.jpg) no-repeat; padding-top: 21px; height: 442px; } .contactleft { width: 20%; text-align: right; clear: both; float: left; display: inline; padding: 4px; font: small-caps bold 13px Georgia, "Times New Roman", Times, serif; color: #fff; } .contactright { width: 70%; text-align: left; float: right; display: inline; padding: 4px; } .contacterror { border: 2px solid #ff0000; } .contactform input { border: none; background: transparent url(images/cformbg.gif) no-repeat; padding: 3px 8px; height: 22px; width: 230px; font-family: arial, helvetica; font-size: 12px; } .contactform textarea { margin:3px 5px; padding: 5px; background: transparent url(images/cformbg2.gif) no-repeat; border: none; font-family: arial, helvetica; font-size: 12px; width: 280px; height: 200px; }
Make sure you disable the css option on the plugins options page if you want to use your own css.
Forum: Plugins
In reply to: [Plugin: Search Everything] Plugin only searching page titlesAnyone know how to fix this?
Forum: Fixing WordPress
In reply to: Quicktag button available in visual editor but not basicAnyone? I’m trying to get a quicktag for the RB Internal Links plugin into the basic editor.
Forum: Fixing WordPress
In reply to: Page links not working in Firefox or SafariDo you mean the links: Home, About, Contact? They are working fine over here in 5 different Mac Browsers, including Firefox. If you have a header image, that isn’t showing.
Your photography is wonderful, by the way.
Forum: Fixing WordPress
In reply to: Activating sidebar widgets causes xhtml to not validateSOLVED!!! Added UL opening tag right after
<div id="sidebar1">
and UL closing tag right before</div> <!-- [sidebar1] -->
in sidebar.phpForum: Fixing WordPress
In reply to: Activating sidebar widgets causes xhtml to not validateI apologize, line 502 is this one:
<li id="archives" class="widget widget_archives"><h2 class="widgettitle">Archives</h2>
It is an issue with my theme, as I have tried the default theme and there is no problem, but I cannot seem to figure out what is wrong with the theme. I have gone through every theme specific page and have not found any improper LI tags…