Jump to content

vinnier

Members
  • Posts

    56
  • Joined

  • Last visited

    Never

Everything posted by vinnier

  1. Just tried the website using IE8 compatibility view and now I see what you mean about the messed up header. How to fix all that?
  2. I can't thank you enough! It's working perfectly right now! THANK YOU
  3. Thanks. I'm kinda back where I started... :/ With this; <form action="http://feedburner.google.com/fb/a/mailverify?uri=WoRecordsManagement" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=WoRecordsManagement', 'scrollbars=yes,width=550,height=520')" method="post" class="subscribe target="_new""> <fieldset> <input type="text" class="feedinput" value="Your email address ..." name="email" /> <input type="submit" class="feedsubmit" value="Join" /> <input type="hidden" value="http://feedburner.google.com/fb/a/mailverify?uri=WoRecordsManagement"/> <input type="hidden" value="<?php echo $blog_title; ?>" name="title"/> <input type="hidden" name="loc" value="<?php echo $location; ?>"/> </fieldset> </form> I'm getting a new window like i want but the content is also loading in the main window How do I stop that from happening? EDIT: Tried removing the hidden value; <form action="http://feedburner.google.com/fb/a/mailverify?uri=WoRecordsManagement" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=WoRecordsManagement', 'scrollbars=yes,width=550,height=520')" method="post" class="subscribe target="_new""> <fieldset> <input type="text" class="feedinput" value="Your email address ..." name="email" /> <input type="submit" class="feedsubmit" value="Join" /> <input type="hidden" value="<?php echo $blog_title; ?>" name="title"/> <input type="hidden" name="loc" value="<?php echo $location; ?>"/> </fieldset> </form> No change... :/
  4. Hmmm, I've checked it with IE8, don't have IE7... And it's all fine under IE8 and under Firefox 3.5.5 some things are missing. + now something is wrong under IE7 according to you... :/ help
  5. Hello, I need some help with my new project that's running on Wordpress. (let me just say that I've tried wp forum but it doesn't look like I will get any help there anytime soon) I never thought I would say that; but I've got a problem with a template under Firefox(!) The theme is family by TopWPThemes.com I have tested it under Opera, Chrome, IE, Safari and it's all fine there but when tested under Firefox some bits of the website are not visible. Those bits are: Releases and Recommended If you go to the website which is http://www.worecords.com you will see which bits I'm talking about. In the theme the files responsible for those bits look like this: recommended.php <div class="125ads"> <a href="#"><img src="<?php bloginfo('stylesheet_directory');?>/recommended/note1.jpg" alt="Recommended #1" width="125" height="125" /></a> <a href="#"><img src="<?php bloginfo('stylesheet_directory');?>//recommended/notes.jpg" alt="Recommended #2" width="125" height="125" /></a> <a href="#"><img src="<?php bloginfo('stylesheet_directory');?>/recommended/note1.jpg" alt="Recommended #3" width="125" height="125" /></a> </div> and releases.php Guess this is the bit in the css that determines those: .ads{ float: right; margin-right: 28px; margin-top: 8px; margin-bottom: 0px; } .ads.125ads { padding:3px 0 0 0; text-align:left; } .ads h2 { color: #181818; font: bold 16px Arial, Helvetica, sans-serif; margin: 0 0 0px 0; padding: 2px 0px 3px 0px; text-align: center; text-transform: uppercase; } .ads img { padding: 4px; border: #bebebe 1px solid; background: #bebebe; } .ads a:link img { padding: 4px; border: #bebebe 1px solid; background: #bebebe; } .ads a:hover img { padding: 4px; border: #ffc04e 1px solid; background: #ffc04e; } As the items don't appear at all under Firefox I can't examine them with Firebug so I am completely stuck. I would appreciate any help.
  6. First of all, HELLO I know it's html basics but I've been working on the website for the last 48h with no break and I'm not seeing straight. I've set up a new website using Wordpress, which uses feedburner for subscription. (let me just say that I've tried wp forum but it doesn't look like I will get any help there anytime soon) The basic form came in with the template only needed adjusting to the account etc. Once I've done it, I've noticed a problem; once I submit the form I get the feedburner confirmation window as a pop-up and the same starts to open in the main window. Pure madness. I only want the pop-up window, so I've been trying to adjust the script, and I'm stuck as the feedburner confirmation loads always in the main window. For now I'm stuck with this: <input type="hidden" value="http://feedburner.google.com/fb/a/mailverify?uri=WoRecordsManagement" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=WoRecordsManagement', 'scrollbars=yes,width=550,height=520')"> And there is no pop up at all right now, it only loads in the main window. For reference, here is the whole bit of the form code: <form action="http://feedburner.google.com/fb/a/mailverify?uri=WoRecordsManagement" method="post" class="subscribe"> <fieldset> <input type="text" class="feedinput" value="Your email address ..." name="email" /> <input type="submit" class="feedsubmit" value="Join" /> <input type="hidden" value="http://feedburner.google.com/fb/a/mailverify?uri=WoRecordsManagement" onsubmit="window.open('http://feedburner.google.com/fb/a/mailverify?uri=WoRecordsManagement', 'scrollbars=yes,width=550,height=520')"> <input type="hidden" value="<?php echo $blog_title; ?>" name="title"/> <input type="hidden" name="loc" value="<?php echo $location; ?>"/> </fieldset> </form> Summarising, I want the form submission to only open a pop up that will display the feedburner page, and the main window to stay the same. Please help me out here, as I feel so stupid right now...
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.