Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I have created a sharing box but it is showing a weird character when I hover on sharing buttons:
screenshot: http://i.stack.imgur.com/GoNbq.png
It is live on here: http://www.dip223.com/uncategorized/aliquam-faucibus-lacinia/
I couldn't find why it is happening. please help.
The following element has text-decoration:underline; as part of its hoverstate:
<a href="https://twitter.com/intent/tweet?text=Night Life Not For the Faint of Heart - http://www.dip223.com/?p=1075" onclick="window.open(this.href, 'mywin', 'left=50,top=50,width=600,height=350,toolbar=0'); return false;">
Simply adding:
.si-share-wmpu a:hover { text-decoration: none; }
to your CSS should fix the problem.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
I want to change the background color of the "Contact" button in the mobile navbar of this website https://originmedia.at with Wordpress to the same orange color like the other buttons on the website. Does anyone know how I can change it?
Try adding this code to Customize > Additional CSS:
#menu-2-5279cfc li:last-child a {
background: cornflowerblue;
color: #fff;
}
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 4 years ago.
Improve this question
On the following form, longer descriptions are bleeding off of the form in DESKTOP mode, into one long line. This is true on the Preview, tho the preview of the phone device wraps.
LINK
How can we fix this?
enter image description here
There's this CSS rule being applied:
.form-sub-label-container {
white-space: nowrap;
}
To avoid that, either delete it (if you can), or overwrite it with the following rule in your custom CSS:
.form-sub-label-container {
white-space: normal;
}
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I'm working on an existing project and the textbox has these shadowed edges. Can someone please help me how to remove this effect?
http://postimg.org/image/5ry6evj5p/
Thank you!
You can modify you css with the setting you prefer ..
for twitter-bootstrap 3 the tag element and class involved should be (the value setted are for sample)
.form-control, input {
border-width: 1px;
box-shadow: none;
}
or you can redifine the class and the elemnt stule in you page on with a inline styling
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
Can anyone help me fix my code so that the hover colour only applies to the navigation bar and not the pictures too. I've tried to specify this by having .a.main-nav:hover { ...}etc in my code but that just gets rid of the hover altogether.
http://codepen.io/anon/pen/rOowGx
Thanks!
This code:
a:hover {
background-color: #ffbc00;
}
Should be like this:
.main-nav a:hover {
background-color: #ffbc00;
}
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
how can i quit this blue area of map image??
I use on hover, focus, active
outline:0;
outline:none;
But nah... dont work.
I use bootstrap, if that can help on any answer.
This is the image with error:
link text
Thx for da help.
I am not sure this will work, but I think it would:
button::-moz-focus-inner {
border: 0;
}
See the link
See the links
Bootstrap fail.
Solved with ...
outline: 0 important!;