0
votes
1answer
23 views

how to detect distro / os to apply css

I am currently using <!--[if statement to detect the type of browser the user has but i realized that the same browser (version and build) can produce different result on different operating ...
-6
votes
1answer
42 views

Cross Browser compatibility issues - Firefox vs. Chrome and Safari [closed]

I'm having trouble debugging a cross browser compatibility issue. Specifically the issue is in Firefox where the slider isn't showing up in the proper place, it looks ok in Chrome and Safari. Any ...
-1
votes
0answers
27 views

Layout (header, two columns below, then content, then footer) problems

Basically, i have problem with different browsers, since i made it working in Chrome first, then in IE 9 and lower, but not in Firefox and IE 10. The most noticing problem in those two was a large ...
0
votes
4answers
80 views

what does Ctrl + PLUS/MINUS do in modern browsers?

From my understanding, the best way for increasing text size is using Ctrl + +. This also keeps the layout. But does anyone know what exactly browsers do when this key combination is pressed? I want ...
0
votes
2answers
33 views

Difference between -moz-linear-gradient and -webkit-gradient

What is the basic difference between -moz-linear-gradient and -webkit-gradient. I know the changes are in parameters and -moz is meant for mozilla. But why we have different CSS property for Mozilla. ...
0
votes
1answer
36 views

page speed font link google fonts

I have made an application in Symfony2 and passed the test as GTmetrix or pigdom and return this error: The Following resources are missing a cache validator. Resources que no not specify a cache ...
0
votes
0answers
32 views

Using <object> to embed pdf, does not expand to wrapping div in chrome

It's not a massive deal but would like consistency across browsers and the document would be easier read if it fills the box. In Chrome, increasing the 'width' only increases the margin around the pdf ...
-1
votes
0answers
37 views

Opera browser is not showing proper design when the display resolution is 800x600

I am checking my website in all resolution(1366x768, 1280x720, 1024x768, 800x600) in four browsers(Mozilla Firefox, Opera, Google Chrome and IE9). I have 8 divs inside one main div.(Assume as columns, ...
0
votes
4answers
36 views

Is different html page content to different browsers possible?

I have a fullscreen/background slideshow that my client loves that just utterly fails in Internet Explorer 8 and below. I think trying to fix that is way beyond my capabilities right now so I would ...
0
votes
2answers
27 views

CSS or Color checker : Browser Plugin

Is there any tool or browser plugin for checking styles on a particular element specially it's color and it's background color code. I have a ASP.NET gridview with like ten's of CSS styles applied on ...
0
votes
1answer
41 views

CSS not completely rendered when browser first launched

I'm having a relatively heavily customized Google Blogger blog template here, but the page doesn't seem to render completely during the first launch of the browser (including Chrome, IE10 and Firefox ...
0
votes
3answers
34 views

css rule skipped by browser

Ok, this might look like another stupid question, but I cant find answer. See this fiddle: Remove #Navigation in CSS declaration here: #Navigation .stretch { ... } so it becomes: .stretch { ... ...
1
vote
1answer
50 views

overflow auto doesn't in android browser

I have a page with the following directives <meta name="viewport" content="width=device-width, user-scalable=no" /> I generate dynamically table cells in the following placeholder: <div ...
0
votes
1answer
38 views

Background-Image size not working in all browsers

the weirdest thing just happened, I had a problem I fixed with the footer and I accidently left the %sign after contain in my code. Take a look. My site is usahvacsupply.com html, body{ ...
1
vote
4answers
45 views

Why do the html controls in below page wrap when browser resized

Below is code for a simple HTML page. Despite the overflow and white-space settings in the style for container, the controls will wrap when the page is re-sized. I am testing in Chrome browser. Seems ...
4
votes
3answers
92 views

Image not working - Is it a Chrome Bug?

I'm having an issue with chrome and I wanted to know if is a bug or my fault. When I try to use an Image called 300x250.png the tag IMG is stripped from the browser, this is not happening with the ...
1
vote
3answers
38 views

Why does my layout get cut off when I resize my browser?

If you go to http://digitaldemo.net/anova/ and resize the browser to make it smaller and then scroll horizontally to the right, you will see that the background now covers the part of the page outside ...
0
votes
1answer
19 views

Circle divs reposition when browser is minimized

Doing work for a client and ran across an issue. When the browser is maximized, the circles are in the right order: Days, Hours, Minutes, Seconds. However, when I shrink the browser the circles ...
0
votes
4answers
56 views

Speeding up website - marking scripts/images as optional?

On my website I have ads from a network that does not load particularly fast. Some browsers won't draw the page unless the ads load, making the website appear slower than it actually is - is there any ...
0
votes
2answers
33 views

container is positioned from bottom all the time

Can anyone suggest me please an efficient way to make one container to stick out from bottom of the browser window and be positioned :relative, be scrollable Can I do it in pure CSS or there is a ...
0
votes
1answer
27 views

Why is my nav bar overlaying Fancybox and how can I fix it?

I've recently installed a photo gallery WordPress plugin on my school's website, and everything seems to be working except one thing: the navigation bar is overlaying images: Everything seems to ...
3
votes
2answers
42 views

Does @font-face load all fonts to the browser

I've been starting to use @font-face in the last year or so seeing that most major browsers support it now. I usually just use 1-3 fonts max, but most often I include the italics version, bold and ...
-3
votes
1answer
53 views

web site not rendered properly in IE 9 and below (CSS/HTML)

Im having an issue getting my site to work properly in IE9 and earleir (it works fine in IE10 as well as FireFox). The issue is that upon visiting the home page (or any of the pages that the ...
0
votes
0answers
43 views

Firefox 9 Specific hack?

My CSS is working great for all browsers except Firefox 9. The issue is that Firefox 9 seems to handle absolute positioning differently than other browsers (I don't know if this is the case for other ...
0
votes
6answers
67 views

jQuery Fade-in Workaround when Javascript isn't Available

I've been using a jQuery fade-in on my homepage, and I've recently just realized that it shows a black screen when Javascript is disabled. How can I change remove the property display: none when ...
1
vote
1answer
32 views

Aside disappear suddenly - Never seen this issue

I'm currently creating a website, which has an div called Aside. This is basically an aside part of the website. I'm including it to my index.php. There is nothing serious about it, however I have a ...
1
vote
1answer
46 views

Browser view content collapse , When window get minimized?

My application will looks good if browser window is fully maximized. And content get collapsed when I minimized the browser window . I don't need the content to be collapsed. I have given the div ...
0
votes
2answers
64 views

Is it bad to have many classes in a HTML element?

In modern HTML coding, it is popular to add several class names to an element such as <div class="class1 class2 class3 class4 ..." </div> This gives us a great flexibility for mixing CSS ...
1
vote
4answers
63 views

How to have static page layout

Below is my code which is the page layout. but if we resize the browser it is keep changing. how can we have static page layout. <head> <style> body, html { margin:0; padding:0; } ...
0
votes
2answers
38 views

CSS Navigation Changing in Different Browsers

I have an issue with my navigation - works great with this CSS in Safari & Firefox, but doesn't look right in Chrome or IE10. Here is the site: http://66.147.240.166/~peakeffe Here is the CSS ...
0
votes
2answers
72 views

Setting minimum size limit for a window minimization of browser?

Is there anyway to set the minimum size of the window minimization manually for all browser support ? Don't hesitate ask question and also edit the question. Good answers are definitely appreciated. ...
-2
votes
0answers
37 views

Browser resize impacting page layout [closed]

i have designed my page layout. but if i resize the browser it is impacting that. how can we restrict my page layout from scattering. Any help please... <head> <style> body, html { ...
-1
votes
0answers
28 views

How to post successfully with large code [migrated]

I have some issues in my html code. but unable to post question as it said "it looks like your post is mostly code. please add some more details". how can we overcome this issue. Thank you...
0
votes
0answers
11 views

Does anyone know of a good general rule of thumb for what kinds of changes cause page repaints in browsers?

I see lots of examples where certain things are enumerated that cause repaints, but what I'd really like to know is, generally, what causes browser repaints? Is it anything that causes a page to ...
-2
votes
1answer
54 views

CSS : My site does not display correctly on Chrome and Safari, but on Firefox it's fine [closed]

There is an error on my website. I want to display my login links at the top of my website but that doesn't work in Google Chrome nor Safari, but it does in Firefox. I believe this has something to do ...
1
vote
1answer
66 views

Why do i have unwanted margin on top of my html page?

i keep getting unwanted top margin and cant remove it, i tried everything, this is affected one of my other projects as well, could find any solution. please help heres my html: <!DOCTYPE html ...
0
votes
1answer
49 views

setting external css to ck editor dynamically in djbrowser

i embedded ck editor (recent version 4.1) into dj browswer. dj browser and i want to set a external css file (http://mystyle.css) into the ck editor. but i do not want to modify or edit config ...
2
votes
2answers
211 views

Browser as a Design Tool - Change colors, Save Them?

I'm a web developer/designer, and I need my code-illiterate clients to be able to easily mess with the colors of particular elements, save these CSS changes, and send them to me. I'll be guiding them ...
0
votes
1answer
38 views

I'm trying to align the text to the center inside the select element of a form. It works fine in Firefox not in Chrome: any ideas?

I'm trying to align the text to the center inside the select element of a form. It works fine in Firefox but the text still align to left in Chrome: any ideas? Here's the css: .top-search select{ ...
-1
votes
2answers
40 views

Browser automatically changes Line-Height?

I am trying to keep the line-height within a paragraph at 1.0. Here is the CSS Class I'm using: .bottombarinfo{ font-family: Verdana, Geneva, sans-serif; font-size: 12px; line-height: 1.0;} This is ...
0
votes
0answers
199 views

How to detect android default browser javascript

Samsung Gallaxy S2 (Android OS, v2.3.4 (Gingerbread)) comes with default browser, I faced some CSS realted issued, it has to especially specify the values. I use the JS lib called ...
2
votes
2answers
191 views

Prevent location.hash in an iframe from scrolling the parent window in Chrome

The scenario: I'm building a kiosk app to run in Chrome. In it i'm loading an iframe from another domain into a modal via a link with an anchor (http:/www.whatever.com/#specific_content). The ...
1
vote
2answers
107 views

Fonts intermittently failing to load?

This is a very frustrating bug! I am using Font Awesome (hosted locally) and a couple of other fonts, and they are intermittently failing to load - not 404ing, just completely failing to appear in ...
0
votes
5answers
117 views

CSS hack for width attribute on IE8 and below

I am trying the following CSS hack for IE8 and below: .class { background-color: #BFBFBF; width: 1154px; width: 930px \9; } But this CSS hack is affecting IE9 also. ...
0
votes
3answers
134 views

filter: blur(1px); doesnt work in firefox, IE, and opera

I have a problem with css: when I try to do -webkit-filter: blur(1px); -moz-filter: blur(1px); -ms-filter: blur(1px); -o-filter: blur(1px); filter: blur(1px); it looks perfect in safari and ...
0
votes
1answer
25 views

Moz rendering bottom property differently than Webkit

Trying to display an H3 on hover using the following CSS on this site: a > h3 { min-width: 100% !important; min-height: 100px; max-height: 100px; display: block; position: absolute; bottom: ...
0
votes
2answers
51 views

Site css compatibility with IE 7 not working

Thanks for checking out my post. I am currently re-skinning a html5 template for my employer and have noticed while doing a bit of QA that the site appears to come out completely wrong on ie7 and 8. ...
0
votes
0answers
31 views

percentage CSS suited for all browsers and resolutions / simple,but tricky graphic layout

I've been struggling with the graphic layout which is quite simple http://members.upcpoczta.pl/a.naplocha/e/index_6.htm but it must be suited to all resolutions. I've decided to build this with ...
1
vote
1answer
176 views

How to display horizontal scrollbar when browser screen decreases

This is what I made dashboard. Which contains 4 DIVs. when browser is fully open when I reduce browser's screen size I want whenever browser screen decreases ... dashboard DIVs should get ...
0
votes
1answer
69 views

HTML code download link and not to open it in browser [duplicate]

I want to create a webpage where I want a link that causes any browser to only download the link and not open it irrespective of the format. Is it possible? If not plain HTML, then any other way?

1 2 3 4 5 17