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
My my website is not scrolling. This is the site https://www.wohooo.net/
It was scrolling before and then suddenly stopped. I am unable to troubleshoot it extensively because I created it with Adobe Muse. I have tried on multiple browsers and computers but is still the same for me.
Add this to the css file:
html {
overflow:scroll;
}
If it still doesn't work, try this:
html {
overflow:scroll;
width:110%;
}
Hope this solves your 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 1 year ago.
Improve this question
I am really new with this.
Could someone tell me how to remove greyscale from images as seen in website?
http://tnp.co.th/wp-hank/
Thank you very much!
You can try to add this CSS rule which resets the grayscale filter:
#site .imagebox.style2 .box-image img {
filter: none !important;
}
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 6 years ago.
Improve this question
My CSS style stops working when I put the tag <!DOCTYPE html> to use HTML5. I used divs to separate the different styles in my pages, and used IDs to identify each one on the CSS code. Everything works fine but when I use that tag, it stops working. Anyone can help with this? Thank you!
you did not use the "px" unit in the code you posted, like width:270px; Changing/completing this should help.
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
Chrome was the only browser to pick up the :first-letter in my CSS. Solved
Found this selector which is hiding it.
.old-price:first-letter {
visibility: hidden;
}
You can find it yourself in the chrome developer toolbar.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I am developing a wordpress site for my client.
I am using Sahifa theme in wordpress.The problem here is,
the styles what i have written are loading in chrome and working well.
But those styles are not working with Firefox and IE.
I have stuck with this problem for a week and searched everywhere but couldn't find a solution.
My site link is
http://currentaffairs.allexamsmaterial.com/
Any help would be greatly appreciated.
Thanks in advance.
I have tested my answer and it seems to fix a lot of your layout problems. Line 1892 is causing the issues:
.ei-slider-thumbs li:hover img{opacity: 1; bottom: 13px;-ms-filter: "progid:DXImageTransform.Microsoft.Alpha
(Opacity=100)";}
Rewrite line 1892 in style.css to read:
.ei-slider-thumbs li:hover img{opacity: 1; bottom: 13px;}
The line breaks you had in -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100) was causing firefox to stop reading the stylesheet after that point.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Improve this question
I have created css button style as here: http://jsfiddle.net/karimkhan/SgTy2/
When I used same css insite <style> in my page then it's effect changed. looks like below:
Actual css on fiddle gives this kind of view:
I am not good at css. What's wrong I am doing here?
What if you make an external css file? The same will probably happen, so see what styles are overlapping your element in inspector mode. I would not suggest to use !important, but rather make the style have more priority. One way to do this is to make your css selector more specific.
For example:
input[name="url"]
{
background: black;
}
has more priority as
input
{
background: red;
}
jsFiddle
Note that a more specifc path also takes longer to determ.
Hope you can work on a solution now.