brittanybuffalo Posted May 23, 2012 Share Posted May 23, 2012 I am having such problems with the neoHTML filter. I have everything coded, used dreamworks, and it works on outside sites, but not neopets. Here is the error message I keep getting: Invalid words or disallowed property names found in your style tags. position Invalid words or disallowed element names found in your style tags. (Class or ID names must be preceded with a . or #). -no_html_comments--- focus I can post my whole code if need be :/ *bwahah dreamweaver * oops! This post has been edited by a member of staff (Neomysterion) because of a violation of the forum rules. Double posting is prohibited, use the edit button if you have something to add. Also, make sure your posts are at 7 words or more. Please check your user inbox to see if you have been contacted regarding this incident, then review our rules. Quote Link to comment Share on other sites More sharing options...
Mouseykins Posted May 23, 2012 Share Posted May 23, 2012 can you post your code using the <> button on the textbox toolbar so some of us with coding knowledge can help better. I can probably help regarding the position error. what is your second error regarding? what are you trying to do in your code with it? Quote Link to comment Share on other sites More sharing options...
Rune Valentine Posted May 23, 2012 Share Posted May 23, 2012 Well your first issue, you need to use inline coding for your position tags. Basically putting "position: absolute;" (or w/e you're using) from your CSS into your div code like this: #div1{ position:absolute; top: 395px; left: 687px; height: 65px; width: 70px; overflow:auto; } into here: <div id="div1" style="position:absolute;"> Also, Dreamweaver includes a lot of unnecessary code, so if you have any <!-- COMMENT --> comments, you have to delete those. But yeah, posting your code here will definitely help us find out exactly what's going on with your code. Quote Link to comment Share on other sites More sharing options...
brittanybuffalo Posted May 25, 2012 Author Share Posted May 25, 2012 <html><head> <title>Krackle Guild Home Page</title> <style type="text/css"> body { background: 663333; margin: 0; padding: 0; color: #000; font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; font-size: 100%; line-height: 1.4; } ul, ol, dl { padding: 0; margin: 0; } h1, h2, h3, h4, h5, h6, p { margin-top: 0; padding-right: 15px; padding-left: 15px; } a img { border: none; } a:link { color: #3E2F26; text-decoration: underline; } a:visited { color: #3C453B; text-decoration: line-through; } a:hover, a:active, a:focus { text-decoration: blink; } .container { width: 960px; background: #FFFAD5; margin: 0 auto; } .header { background: #CCCC66; } .sidebar1 { float: left; width: 180px; background: #EADCAE; padding-bottom: 10px; } .content { padding: 10px 0; width: 600px; float: left; } .sidebar2 { float: left; width: 180px; background: #CCCC66; padding: 10px 0; } .content ul, .content ol { padding: 0 15px 15px 40px; } ul.nav { list-style: none; border-top: 1px solid #666; margin-bottom: none; } ul.nav li { border-bottom: 1px solid #666; } ul.nav a, ul.nav a:visited { display: block; width: 160px; text-decoration: none; padding-top: 5px; padding-right: 5px; padding-bottom: 5px; padding-left: 15px; background-color: #CCCC66; } ul.nav a:hover, ul.nav a:active, ul.nav a:focus { background: #CCCC66; color: #FFF; } .footer { padding: 10px 0; background: #CCCC66; clear: both; } <div id="div1" style="position:relative;"> .fltrt { float: right; margin-left: 8px; } .fltlft { float: left; margin-right: 8px; } .clearfloat { clear:both; height:0; font-size: 1px; line-height: 0px; } </style></head><body> <div class="container"> <div class="header"><a href="#"><img src="http://i49.tinypic.com/qstimf.jpg" alt="krackle" name="Insert_logo" width="960" height="480" id="Insert_logo" style="background: #663333; display:block;"></a> </div> <div class="sidebar1"> <ul class="nav"> <li><a href="http://www.neopets.com/~Liluriah">Portal</a></li> <li><a href="http://www.neopets.com/neoboards/boardlist.phtml?board=8">Advertise</a></li> <li><a href="http://www.neopets.com/~Fazd">Webbie</a></li> <li><a href="http://www.neopets.com/browseshop.phtml?owner=krackleaccount">Donation Shop</a></li> <li><a href="http://www.neopets.com/genie.phtml?type=find_user&auction_username=krackleaccount">1NP Auctions</a></li> </ul> </div> <div class="content"> <h1>Welcome!</h1> <p>Welcome to Krackle! Let the flame ignite you!<br> We are a nr/themeless guild that is very active and dedicated to helping our members achieve their goals.</p> <h2>New and Updates</h2> <p>We have our first 1np auction going on now! Keep the ideas coming to improve the guild! <br> <br><img src="https://images.neopets.com/items/bottlefaerie_fire.gif"> <br> We will have this 1np auction when we hit 50 members! So make sure to add bemine_4ever!<br> <div class="footer"> <p>Created by <a href="http://www.neopets.com/userlookup.phtml?user=brittanybecause">Brittanybeacuse</a> </p> </body></html> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.