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 have a problem with my website page. It used to be okay, but now when I load it in a private browser(Chrome), the page flickers. I tried minifying css, optimizing images..even changing the html structure, but it seems to always have some problem...any ideas how I could fix this?
async-hide class creating the issue with opacity property. Overwrite it by
.async-hide {
opacity: 1!important;
}
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 7 hours ago.
Improve this question
Svelte isn't loading my CSS correctly. Here is how it looks like
Heavily distorted and scaled wrong. There's supposed to be a sidebar
How it's supposed to look like:
See, there's a sidebar, everything looks good
I even figured the icon for the page isn't even loading like it should.
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
css from a tutorial
I'm trying to understand this from a tutorial I'm watching on youtube, but I can't seem to understand it.
--hue is a CSS variable.
The code --hue: var(--hue-correct) is setting the CSS variable --hue to the value of the variable --hue-correct (e.g. 145)
For more information, see: https://www.w3schools.com/css/css3_variables.asp
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 5 years ago.
Improve this question
My website is build on Wordpress using the Theme "BeTheme", which creates html junk like empty inline styles (style="").
How can I remove this?
I thought of two ways: If I would know in which php-File the style attribute is attached, I could do something like
if (style is empty)
{
don't attach style attribute
}
If I can't get there, I could clean the page afterwards with something like
replace(style="", '')
How can I achive this in an elegant way, without slowing my page down?
if ($("div").attr("style").length<=0)
{
$("div").removeAttr("style");
}
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 have to use the glyphicon-calendar.
For some reason I can't see it.
I noticed that I got error in the $(document).ready(function(){})
Attached jsfiddle
I had this issue initially and fixed it by downloading the latest bootstrap files which includes the glyphicon font.
http://getbootstrap.com/getting-started/#download
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 cannot figure out why I can scroll past the footer of the site.
Any help would be really appreciated.
I based this site off of a free template.
Thank you!
My Website here
Check your website with just below change:
Use this:
<body data-spy="scroll">
Instead of :
<body data-spy="scroll" style ="overflow: visible;">