Questions tagged [webpage-rendering]
53 questions
2
votes
1 answer
height and width values for css in chrome are too small. Or is the width too large?
I have a web site page that doesn't seem to be rendering properly for chrome in safari.
It appears it is rendering the width of the screen with twice as many pixels as other browsers. I suspect it may be the initial viewport settings, which work in…

Gerry Straathof
- 111
- 1
- 3
2
votes
2 answers
Text background with specific line-height not the same in Chrome and Firefox
I'm trying to get a semi-transparent background that "follows" the text: i.e. the background should not be a rectangular box, but rather a "jagged box" that stops at each linebreak.
Like this:
I do this with the following style:
p {
display:…

qff
- 5,524
- 3
- 37
- 62
2
votes
5 answers
Background color switching to transparent while scrolling in WebKit browsers
I am working on making a fixed navigation web site. I have a navigation bar fixed at the top of the screen using absolute positioning. The CSS looks something like this:
.navbar {
background-color: #1f1f1f
top: 0px;
position: fixed;
…

Jesse Dunlap
- 1,280
- 1
- 16
- 22
2
votes
1 answer
Redraw Issues in Chrome
I am experiencing redraw issues in Chrome that I can't explain. They don't appear in any other browser. The website is http://leonardo.re
They appear after hovering over a styled DIV containing a styled link (contact page):
And sometimes on an…

rafleo
- 580
- 8
- 28
2
votes
2 answers
RestEasy open html/jsp page
There is a RestEasy method, which handles @GET requests. How is it possible to open a jsp/html page from that method?
@GET
@Path("/")
public void getMainPage(){
//...
}

user1588782
- 293
- 1
- 4
- 6
1
vote
2 answers
Site visualization problem with Chrome
I have a site based on Solar Sentinel Joomla template: www.sism.org
I'm having some visualization problem with chrome.
The right side-bar is shifted down after all the content, while it should be floating on the right!
Could someone explain me…

Bakaburg
- 3,165
- 4
- 32
- 64
1
vote
0 answers
Firefox on Windows renders an image color incorrectly
I've run into this issue before without ever really figuring out what the problem was, but I'm attempting to do the standard "drop-shadow" effect by using an image border on the main content of my page. The content portion has a blue background…

Chris Thompson
- 35,167
- 12
- 80
- 109
1
vote
3 answers
What is Quirks mode in IE8 Developer toolbar?
I am wondering what is Quirks mode in IE8 Developer toolbar? Why page rendering is different in Quirks mode than in IE8 standard mode?

KoolKabin
- 17,157
- 35
- 107
- 145
1
vote
3 answers
How can i manipulate the page while it is rendering?
I want to change some elements text when page is leaving the server (page_render, endRequest etc.).
How can i get access to the page and how can i find the elements to change their values, texts?

uzay95
- 16,052
- 31
- 116
- 182
1
vote
0 answers
After the DOM is ready, IE will not show page content when Javascript is modifying the DOM? (but Firefox will show)
I have a page that will initialize jCarousel when the DOM is ready (by jQuery's $(document).ready()), but on IE 8, the page is not displayed until jCarousel has finished initializing, which can be 1 minute later. On Firefox and Chrome, the page…

nonopolarity
- 146,324
- 131
- 460
- 740
1
vote
2 answers
hook_menu not working on a custom module
May be I am something obvious but a simple custom Hello world module isn't working. I have spent a couple of days trying to fix this but no progress at all.
hello_world.info
name = Hello World
description = "This module is to test hello world"
core…

user2283993
- 13
- 1
- 6
1
vote
1 answer
How to find total DOM processing and page rendering time in chrome
How to find total DOM processing and page rendering time in chrome for a particular page (running locally) .. i want to see the total time for the entire page and not individual resources in the page.

Abhishek Jain
- 971
- 3
- 13
- 18
1
vote
0 answers
Chrome cancels request on link clicking befoe the page totally loaded. And FF doesn't
There is a front-end problem in my web-app:
for example I have a page with plenty of JS code executed on that page. There is a link on it like
Examle Link
I want to click…

java_newbie
- 821
- 1
- 13
- 24
1
vote
1 answer
Adding aligned image to table cell causes rendering bug in Chrome and Firefox
I have an image that is set to vertical-align: text-top inside a table cell. In Internet Explorer it renders correctly, but Chrome renders incorrectly:
Internet Explorer 10 (10.0.9200.16660):
Chrome 29 (29.0.1547.66 m):
Updated to include Firefox…

Ian Boyd
- 246,734
- 253
- 869
- 1,219
1
vote
1 answer
better keep big amount of html or create on the fly
From the performance point of view, is it better to keep a big amount of hidden HTML in the page (a big collection of elements) or to have just the JavaScript models and rebuild the HTML when needed?
Thanks

Bakaburg
- 3,165
- 4
- 32
- 64