Weird button outline in Safari [closed] - html

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I'm having an issue with my site on Safari (and on Safari only). If you go to luckyskins.com in Safari and hover over any of the elements in the nav bar, a small outline is left around each button after you stop hovering. This doesn't happen in Firefox or Chrome. Any ideas what this could be?
This is what it looks like when a button is hovered over: http://cl.ly/image/133m0Z3Q3Q2m
And here's what it looks like after the mouse is removed from the button: http://cl.ly/image/1P112U063904
That outline shouldn't be there and doesn't happen on any other browser but Safari. Any thoughts?

When styling the button, add the line:
* {
outline: none;
}
That should get rid of it. If it doesn't that is strange.
The * refers to all things that Safari or any browser gives an outline and therefore won't. Add this somewhere in your code and it should fix the problem.

Related

Website not displaying correctly in IE9 [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 9 years ago.
For some reason the website I built will display correctly in Chrome, Firefox and IE10 but in IE9 it displays incorrectly. It won't display the background and it is all off alignment. Does anyone have any ideas?
Website: http://www.thefishonthedome.com
Have you tried removing the HTML comment before the open tag at the top and replacing it with a <!doctype html> declaration? Your page is running in Quirks mode.
If you are using CSS to define the width, try to define it in HTML itself.

Fixing my 'Responsive' design [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 9 years ago.
On my website, kylesethgray.com, I have made a somewhat 'responsive design'. Everything seems fine except two things:
If i have a list, be it <ul> or <ol>, the bullets get cut off when the browser window is shortened horizontally
For some reason, when doing the same thing to imitate a mobile browser, a horizontal scrollbar appears, and scrolls to the right, even though there isn't anything there.
Is there anything I can do to fix this?
I think the YouTube embed is breaking your layout, try this CSS:
.video iframe { width: 100% }
Also you should consider to use a framework for responsive design like Foundation or Columnal

Adding Search form in existing code [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I have a Megamenu on my website and it works in all browsers apart from Google Chrome. It just doesn't appear.
Please take a look at the header on the homepage on Firefox and then take a look at it in Google Chrome.
The website
You'll see in Chrome, the Menu isn't there but in Firefox it is.
Can you see why this is happening?
Cheers
Change your position:fixed to position:relative on <div id="megamenu"></div> and it shows up.
Looks like your CSS for elements around it is throwing it all off though, so this little fix might not get everything looking the same in both browsers.

Sticky foooter issue with Google Chrome [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
Please take a look at the footer on this site.
When you scroll out or in, the footer stays at the bottom.
However, when the page loads in Chrome, I need to scroll down to see the footer regardless of how zoomed out I am. I want the footer to be visible at load instead of having to scroll down.
Basically, I need the footer to be just like it is in Firefox and IE.
Anyone know what is causing this behaviour?
Its working fine in chrome (version: 17.0.963.56) of my system. Check your version or clear the history and reload again.

IE Compatibility Problems [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 11 years ago.
I cannot seem to get the border around the title and elephant elements to go away in IE. Seems to work fine in chrome and Firefox. Does anyone understand why? Reasoning and answer would be much more helpful instead of just an answer. I also cannot get the borders of the elements to work in IE, however that is not as important to me right now. Thanks in advance.
Link to website
IE follows the web browser tradition of drawing a colored border around an image that is a link (technically, an img element inside an a element that has the href attribute). This was meant to make the user notice that the image is a link.
To remove the border, use the attribute border=0 in the img tag or use a corresponding CSS rule, like img { border: none }.