Weird input button issue IE - html

Im having an awkward issue with internet explorer at the moment. Any page that i have that includes an the button appears extremely small and with a line instead of the text entered in value=. I have tried removing the style sheets from the pages but the issue persists. If anyone could shed some light on this for me it would be appreciated.
<input style="height:50px; width:150px; text-indent:hanging;" type='submit' name='submit' value="Submit"/>
Now this is just one example but any submit button i create will be extremely small with just a --- in it instead of font. In the example i set the height and width and the button will be that size but the text inside is still just ---- though on firefox and crhome it they all sa whats in the value field. And as suggested in the comment below im not on windows xp or using a custom theme.

You have a CSS rule that sets the font size to something very small, in some part of the document that is not included in the code snippet you posted. You will probably see this if you test with a document that contains nothing but the tag you posted.

It works fine for me when I put it in a blank document so you must have css somewhere else that is taking over. Trying using developer tools or firebug to see what all CSS is being applied to the button. You may find its inheriting from somewhere else. If not some more code in context of how it's being used may be helpful.

Hi you can define your button css in External File check to this click here
http://jsfiddle.net/BH95f/2/
Now this is run every browser with ie

Related

Styles changed suddenly on api-details

I have a managed instance of developer portal, suddenly elemets like the tag, code section on try it and are a mess:
I cannot even click on the Copy button of the code block.
Any ideas what could it be? I have checked the styles section on the editor and everything looks fine. Is there a way to reset the styles only?
After checking around I found a misplaced height in the menu:

Can´t edit css in Browser because of HTML Form and css class

I had a Problem with my Development console in Chrome. All stylings of the Site where only available in Read-Only Mode. It wasn´t possible for me to edit the styles in Chrome.
But i just ignored it because i just created new classes in Chrome to test new stylings.
After changing some HTML code suddenly it was possible to edit the stylings again in Chrome. After some copy and past from the old code I found what creates this Bug. It was a little Form.
<div class="search-map-form">
<form>
<input type="text" placeholder="ORT ODER POSTLEITZAHL">
<input type="submit" value="SUCHEN">
</form>
</div>
But it is not only the form that causes this Bug. It is the combination of the class search-map-form AND the form.
Changing the class name to search-map-forms -> there is no Problem.
Delete the form but leave the div with the class -> No Problem.
Deleting only one input -> No Problem (it doesn´t matter which)
Has anyone experienced something similar? Or does anyone know why this happen?
I really don´t get it.
UPDATE:
Now it gets more confusing. I tried to replicate it on a clean html page. Nothing happens i switch back to the page with the Problem, reload it (without the same code i had the Problem)... No Problem anymore. Even the code on the Server i haven´t touched since 2 days works now.
It must be a client sided Problem but I really don´t know what this caused and why I had this Problem for 1 week and suddenly cant reproduce it anymore. Without really changing anything.
After Browsing a few minutes. Reloading the Page on the server and the Problem is back again...

Anchor link not working

I've encountered weird problem with anchor links. I have some on a page, and they suddenly stopped working (checked in chrome and firefox).
I noticed that after clicking anchor, let's say <a href="#news">, address changes to http://mydomen.net/index.html#/news and anchor doesn't work. If i manually remove that / after # and open new link it works as intended, but adds / again.
Did I miss some changes in HTML? Or what could it be? Thanks!
The only possibility is that this is coming from either your script (but you are only talking about HTML, so there is no clue for that) or URL rewriting on your server.
There is absolutely no possibility for plain HTML with your provided example code to behave like this.
(Browser extension is not an option since you tried different browsers)
Still don't know what caused this, but renaming anchor target to <div id='/news'> worked.

IE8 not showing div content

I have some content that, for some reason, is not being shown in IE8 (but works fine in Firefox).
The source shows that the code is created, and the box for the content is present and correct, but everything inside it (in <div class="inside">) is not shown. The class .inside is visible, as shown by the box above it being populated.
I've recorded a short video so that the problem can be seen. I'm totally lost for ideas, any suggestions appriciated. Thanks.
http://screencast-o-matic.com/watch/cl1YQFHO5
This was an issue with my text editor (Total Edit) corrupting a file. Copying the contents in to a new file and overwriting the original solved the issue.

Background images not showing in Firefox

I have a firefox-specific issue with this page :
http://www.buzzx.com/feedback.php
It renders fine in IE, Safari, Chrome and every other browser invented by man, but in Firefox the background images do not show (The 'Feedback' link on the left and a white box around the content).
Any help appreciated, I'm completely stumped here.
update : the images show if i put in the full path in the css - http://www.buzzx/..../images/... as opposed to having a relative path. but i really want to avoid doing this.
Had a similar problem today, I can't see your css, but, this is what I found out, I had to move the html portion to the bottom of the css, at least below the other background elements I had, so that it would show. I hope this helps.
Just getting into Webdesign HTML & CSS, I had the same problem.
I used Webdwarf webdesigner to build the basic layout for the website. At first it didn't show in Firefox, but then I also put up an over-sized transparent picture made in GIMP. Just a big square with 100% transparancy. I checked it by clearing the cache in advanced options in Firefox and reloading the page. Changed the background picture a few times, hit reload button and it changed straightaway.
Other problem is often the path string. Webdwarf made the CSS coding for the background for me and used the path string from the current location. background-image:url (./images/background.jpg). It seems firefox wont accept a full length string for the background image
You might want to check against a validator, just to make sure.
Line 48, Column 48: document type does not allow element "div" here; missing one of "object", "applet", "map", "iframe", "button", "ins", "del" start-tag
<h1><div class="page_heading"><div class="fleft">Contact Us</div><div
Very weird!
But I noticed one thing: the images don't load when there's a javascript error (I see it with Firebug) related to Google Ads. The message says:
Permission denied to http://googleads.g.doubleclick.net to call the Location.toString method on http://www.buzzarab.com.
Line 0
Try and test the page without Google ads.
Resolved by adding full path to the css, not a real fix but will do for now till a proper fix is found.