Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm having an issue with content overwrapping on a website I'm working on for someone.
I've added the countdown timer/signup area at the top. However, it's overlapping in all major browsers. At first I thought it was an easy fix and just added a transparent image to knock down the content a bit more. But, then I realized it fixed it for FireFox but was still overlapping on Chrome and Safari.
I think part of this is just that I've been looking at the code too long and am missing something simple. If someone could post what needs to be added/changed, that would be great. Any help would be appreciated.
You have the countdown contained within your header (#header_wrapper), which has its height set to 131px.
This means, the layout won't take the full size of the countdown into account.
You'll probably want to either move the countdown out of the header wrapper and into the content wrapper, or correct the height of the header appropriately.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
well, i am reading out an image folder with lets say 300 images with php.
It runs fine.
To reduce bandwidth, i want to load the images only, if they are in the viewport.
If I'm not wrong you want your images to load when you scroll down the page. So, you need to use lazy loading in your application.
See this example
Let me know if you have any question.
So you are looking for an infinite scrolling, as far as I understand.
You have some plugins that may help you:
http://jscroll.com/
http://infinite-scroll.com
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have a page that doesn't end to load. PHP max_execution_time is set to 30 but the icon in the Chrome tab doesn't end to turn. What tool I can use to find where the script is?
PHP log are clean, and this is a simple login page made using laravel.
I discover that problm are caused by cookie, in fact if I load page using Chrome hidden mode I have not the problem.
PHP max execution time is for PHP. There are several other things that have to process as well, like MySQL. The time it takes SQL to do stuff is not included in the PHP max execuion time. Beyond that, you'd have to show some code to figure out why.
To anwser your question, the browser is a pretty good tool for that. Or if a rewrite is hiding the filename you could grep for a unige string from the source, assuming you know which parts are PHP generated.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
I'm having some issues where the content on my website is going off the end of the page.
{link removed} - Question answered
If you click the search button on the left hand side, you'll see what I mean. I can't seem to get my head around why this is happening. The coding is a bit messy at the moment, but will eventually clean it up. Any help given will be appreciated!
You've set a height of 110px on the div with class products_box.
Remove that height and everything will be fixed.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I know how to read and parse XML with PHP, but is there a way to make it auto advance through pages of XML data automatically? I work for a TV station that is featuring open houses via a real estate xml feed and need to show one or two houses at a time for a half hour without requiring someone to sit there and advance the pages themselves. Any thoughts would be appreciated!
You could have PHP output the necessary JavaScript to redirect to the next page.
Here's how to redirect to a new page: How can I make a redirect page in jQuery/JavaScript? combine that with setTimeout() to add a delay.
I'm not sure whether I would rely on this for a live TV feed, though - I'd be too scared of the embarrassment of the browser crashing, or an error popping up....
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have made a webpage and doing testing in different browsers. In Chrome, everything is okay. But in IE, in some pages, at their ends, a few words are used to repeat themselves, far away.
When I use cursor to highlight the repeated words, the original words far away are also being highlighted.
May experts teach me what I have done wrong?
most probably its because of CSS file which you have made for all explorers the same. You will need to change the CSS file according to your browser.
If you have already done it then sample or image/code of your web page is required to find
the actual problem and then the solution.