OregonJac
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Paypal multiple selection button problemsWOW, I found it. I’m going to copy and paste the wonderful post that answered my question in a simple easy to fix way.
Thank you eyeglu
Solution:All <option> values must be grouped within a single <select> tag. for instance:
<select name=”os0″> <option value=”a.Instant/Email”>a.Instant/Email $160.99 </option> </select> <select name=”os0″> <option value=”b.2-Day Rush”>b.2-Day Rush $161.00 </option> </select> <select name=”os0″> <option value=”c.3-Overnight/Next Day”>c.3-Overnight/Next Day $175.00 </option> </select>
should actually be just:
<select name=”os0″> <option value=”a.Instant/Email”>a.Instant/Email $160.99 </option> <option value=”b.2-Day Rush”>b.2-Day Rush $161.00 </option> <option value=”c.3-Overnight/Next Day”>c.3-Overnight/Next Day $175.00 </option> </select>
find each extraneous </select> <select name=”os0″> pair and delete them.
This is a word press problem that manifests itself when you switch between VISUAL and HTML mode in the Edit Page EDITOR.
Ciao
How do I change the colors and font of the ‘eventlist’ display in the sidebar? I have created it as a widget using the shortcode in a text item.
Forum: Themes and Templates
In reply to: Simple Dark Theme Widgets won't displayNVM – if only I would give the database time to catch up LOL
Forum: Themes and Templates
In reply to: Wide page CSS challengeSorry, the above links are the css file which I think is where I have a problem, but here is a pastie link to the page_wide.php file as well.
Thank you,
http://pastie.org/1804260.jsForum: Themes and Templates
In reply to: Wide page CSS challengeor this?
Forum: Themes and Templates
In reply to: Wide page CSS challengeThank you http://goo.gl/8oycH
Forum: Themes and Templates
In reply to: removing a comments boxThat is exactly where it was. Thank you!