|
|
stackoverflow.com
- 2013-03-20 13:22:39
- Similar
- Report/Block
I'm aware that similar questions have been asked over and over, but I have yet to come across a solution that actually works for me. Picture the following problem. Situation: The body has a non-fixed background image that repeats both vertically and horizontally. There is supposed to be a second transparent background image laid over the...
|
|
|
stackoverflow.com
- 2012-04-01 00:05:45
- Similar
- Report/Block
I need to achieve the following, a div which holds an image which is CMS managed and also has an option to display a background color, all the content will overlap this background image. Since the image is CMS managed I have to insert an image tag.... <HEADER> <div> image tag placed here</div> -------this div is absolute...
|
|
|
stackoverflow.com
- 2012-09-05 16:20:34
- Similar
- Report/Block
I have the following css for my drop down menu in my banner: #nav-menu li a background-image:url('../images/menu_bac kground.png'); background-repeat:repeat-x; background-position: left top; height: 35px; #nav-menu li a:hover background-image:url('../images/menu_bac kground_hover.png'); background-repeat:repeat-x; background-positi...
|
|
|
|
stackoverflow.com
- 2013-02-11 13:27:27
- Similar
- Report/Block
I'm trying to set a background to a pdf and managed to set it with an image my pdf has a big table so the pages are added automatically not with the Document.NewPage() method so the image background is set only on the first page. This is the code that adds the background: Image backImg = Image.GetInstance(@"D:\websites\DIS ugs\130208\A4.
|
|
|
stackoverflow.com
- 2012-03-11 10:03:43
- Similar
- Report/Block
I'm worried about background-position-x background-position-y . Gecko (Firefox) and Presto (Opera) don't support them, but Webkit (Chrome, Safari) does... Does anyone know (with official references) if this is included in the standard?...
|
|
|
stackoverflow.com
- 2013-04-10 02:38:09
- Similar
- Report/Block
Our pages fail wcag 2.0 AA validation when background images are disabled. (Due to background colour) We want to keep the dark background we have at the moment, but make the background white if images are disabled. Is the below a smart solution to the problem? bg_top is the main background image. bg_secNavigation is the dark background as...
|
|
|
modmyi.com
- 2013-03-18 04:23:12
- Similar
- Report/Block
I understand that the image is the same file aka barlcd .... But I've noticed that however I edit the image ... The clock background changes but the enter passcode does not, in terms of dimension and position......it is possible to move the enter passcode background from view as I know that it cannot be removed without affecting clock bac...
|
|
|
|
stackoverflow.com
- 2012-04-12 07:54:23
- Similar
- Report/Block
I've tried to find a way to animate my body's background-position using following script: (function($) { if(!document.defaultView || !document.defaultView.getComputedStyle){ // IE6-IE8 var oldCurCSS = $.curCSS; $.curCSS = function(elem, name, force){ if(name === 'background-position'){ name = 'backgroundPosition'; } if(name !== 'ba...
|
|
|
stackoverflow.com
- 2012-04-05 10:27:37
- Similar
- Report/Block
In my program, I need to add some images on the GUI. However, the background color of the image is not the same as the background color of the view. I know that there is a property used to change the image background. However, when I change the feature of this item, there is nothing happen. Do I miss some settings before adding the image...
|
|
|
stackoverflow.com
- 2012-06-27 11:56:00
- Similar
- Report/Block
I want to set a background image to different divs, but my problems are: The size of image is fixed(60px). Varying div's size How I can stretch the background to fill the whole background of the div? #div2{ background-image:url(http://s7.static.ho otsuite.com/3-0-48/images/themes/classic /streams/message-gradient.png); height:180px; wid...
|
|
|
stackoverflow.com
- 2013-03-25 13:19:24
- Similar
- Report/Block
Im working on a weather app and i want to change the background image dynamically depending on weather its sunny, cloudy and so on. I set the Background image for all the pages from App.xaml.cs as following: rootFrame.Background = new ImageBrush Stretch = Windows.UI.Xaml.Media.Stretch.UniformToF ill, ImageSource = new BitmapImage { UriS...
|
|
|
stackoverflow.com
- 2013-06-10 03:50:50
- Similar
- Report/Block
Currently, I'm using this code to generate a background image for my JFrame: BufferedImage myImg = ImageIO.read(myUrl); this.setContentPane(new ImagePanel(myImg)); //ImagePanel class public class ImagePanel extends JComponent { private Image image; public ImagePanel(Image image) { this.image = image; @Override protected void pain...
|
|
|
|
stackoverflow.com
- 2012-04-27 22:44:46
- Similar
- Report/Block
I have universal app. In that app I need the background image to be centered or stretched. That way when I rotate the device or switch it the image displays correctly. Here is my code: in viewDidLoad self.view.backgroundColor = [[UIColor alloc] initWithPatternImage:[UIImage imageNamed:@"tux.png"]] Can anyone tell me how to accomplish thi...
|
|
|
stackoverflow.com
- 2012-04-02 18:42:15
- Similar
- Report/Block
I have application that display books (a kind of library shelves). My books are displayed as GridView. Now I trying to set background image (book shelves). When I set android:background property of GridView, it shows background image, but in case of many books when user scroll them, the only images of books are scrolling, not a shelves. T...
|
|
|
stackoverflow.com
- 2013-04-15 21:54:53
- Similar
- Report/Block
So I have a wrapper div with a background image that covers the whole page. This works generally... I can maximize the browser and the background covers completely, BUT if there is a scroll, the image stops at the point of scroll. This image shows the scrolling and the gap from the jsFiddle example/1 #wrapper background: url("../../Image
|
|
|
stackoverflow.com
- 2013-02-27 11:58:44
- Similar
- Report/Block
I thought a general rule is that, whenever a div foo has position: relative , then if none of the parent and ancestor has any non-static position (so need to have one of relative, absolute, or fixed ), then, the div foo now will be position relative to the overall document. But in the following page: http://jsfiddle.net/4RcEn/6/ some...
|
|
|
snipplr.com
- 2013-02-21 11:24:46
- Similar
- Report/Block
you can animate background image by changing CSS background position property using jQuery setInterval method...
|
|
|
stackoverflow.com
- 2012-10-17 11:21:08
- Similar
- Report/Block
I am trying to work out how I would go about creating a website that has 3 separate 'layers' (top navigation, then content, then footer) each with a different background image, that tiles to 100% width... but I want my content to be centred (as if the containing divs had margin: 0 auto applied). So far I have been attempting to create div...
|
|
|
|
stackoverflow.com
- 2012-04-09 21:54:38
- Similar
- Report/Block
Working with a bit of in-line CSS within a CMS (fun!). This chunk of code works as it should in Chrome and Firefox, the background image occurs just once. But when the page loads in IE 9, it's as if the no-repeat value is ignored and the background images repeats through the length of the div. <div style="width: 500px; margin-top: -10p...
|
|
|
stackoverflow.com
- 2012-02-28 15:05:06
- Similar
- Report/Block
I'm trying to make a "fade-in fade-out" effect using the css transisition. But I can't get this to work with the background image... I have this css: .title a { display: block; width: 340px; height: 338px; color: black; background: transparent; /* TRANSISITION */ transition: background 1s; -webkit-transition: background 1s; -moz-transitio...
|
|
|
stackoverflow.com
- 2012-04-11 16:15:08
- Similar
- Report/Block
So im making a gui, and i have a background image for it. i dont know how to make it set as the background, so any help with that would be good. an explination would also be good. also, after we get that image as a background, how do we get the image resize to the size of the window. such as image.setSize(frame.getHeight(), frame.getWidth...
|
|
|
|
stackoverflow.com
- 2012-07-19 17:33:54
- Similar
- Report/Block
I've got a button created in photoshop which is already the exact size to use for displaying. In IB I created a RRB and set the background image to the button .png. However this doesn't display properly - there is a white boarder between my .png button and the button provided by IB, especially at the corners which must have a different ra...
|
|
|
stackoverflow.com
- 2012-09-18 22:23:35
- Similar
- Report/Block
I have following code. That does paste a foreground image (logo.jpg) over background image (background.jpg) While pasting this foreground image, I want to set the opacity of this foreground image. I used DrawMask (http://golang.org/doc/articles/image_dr aw.html), but it seems I am missing something here. Please see the code below. Anyone h...
|
|
|
coolchaser.com
- 2008-05-27 19:27:36
- Similar
- Report/Block
Here’s a great tip for using Coolchaser.com to find an awesome background for your MySpace profile! Not all images on the internet are free. So when we make our layouts, we need to make sure the background isn’t under copyright. You can do this easily right in our editor. Once you search for a background, click on one to see what it will...
|
|
|
|
stackoverflow.com
- 2013-05-03 01:51:41
- Similar
- Report/Block
I wish to add a jQuery icon to another class which is added by another plugin ( jquery.tablesorter.js ), specifically I wish to add the icon ui-icon-triangle-1-n to the .headerSortUp class from tablesorter I am trying to add the following class but can't for the life of me how to work out a sprite for it. table.sortable thead tr .header...
|
|
|
stackoverflow.com
- 2012-04-19 14:10:36
- Similar
- Report/Block
I have a JSplitPane. i want to add background image to the left side of the JSplitPane. mySplitPane.getLeftComponent this returs the left side component. and then i want to add an image background to the left side. i think i can use the Paint() to set background image to the JSplitPane. but how can i set on the only left side component.
|
|
|
stackoverflow.com
- 2013-04-11 13:13:39
- Similar
- Report/Block
i Want my background image to completely fil in the browser window. I tried css body {background:url(bg.jpg) fixed no-repeat 100%} but its not covering entire screen.
|
|
|
|
stackoverflow.com
- 2013-03-19 11:35:49
- Similar
- Report/Block
I have created one html form. Which have one background image. In chrome and Mozilla i am getting proper background image on running the html form. But it is not loaded in IE9. IE9 showing white background on running HTML form, and if I refresh IE9 browser, it is giving me background image. I have attach my code below: Personal Login Co...
|
|
|
stackoverflow.com
- 2012-06-05 10:30:15
- Similar
- Report/Block
I use has() for checking if a tag have inside, and if tag were in I will add some css property, my code work when tags created by hand but when I use ajax and $.each() for creating this items, the has() not work. the jquery code is : $('.innerItems li ul li').has('ul').css({'background-image':' url(images/arrow.png)', 'backgroun...
|
|
|
stackoverflow.com
- 2009-03-16 07:44:52
- Similar
- Report/Block
What is the correct syntax when setting the background-image in CSS? In visual studio, there seems to be no problem in the background since it appears. But in the browser like IE or FF, the background does not appear. is there something i missed here? syntax i am using is below (which i think is correct...) #headerArea height: 150px; ba...
|
|
|
|
stackoverflow.com
- 2010-03-12 03:50:45
- Similar
- Report/Block
In this article, http://css-tricks.com/css-sprites/ , it talks about how can I crop off a smaller image from 1 bigger image. Can you please tell me if it is possible/how I can crop off a smaller image and then scale the cropped off region before I lay it out? Here is an example from that article: background-image: url(http://www.jaredhir...
|
|
|
stackoverflow.com
- 2012-05-25 15:07:40
- Similar
- Report/Block
My data set contains a column named IconUri that contains a full HTTP address to an image located on a web server. This data set is bound to a tablix, and I'd like to display the image in a cell. 1) I've tried to drag an image into the cell, but I can't use expressions as the image itself isn't aware of its parent's (the tablix) data set...
|
|
|
stackoverflow.com
- 2011-08-11 04:35:09
- Similar
- Report/Block
I need a robust motion detection and tracking in web cam's video frames. The background is always the same. The aim is to identify the position of the object, if possible without the shadows, but not so urgent to remove shadows. I've tried the opencv algorithm for background subtraction and thresholding, but this depends on only one image...
|
|
|
|
stackoverflow.com
- 2012-07-06 13:32:20
- Similar
- Report/Block
This question is very similar to this question but relates to docx4j instead of flying saucer. I'm using docx4j to render an xhtml document to docx through a servlet which returns the generated docx document. The xhtml document features an image which is requested from another servlet. The image servlet checks who is logged in before ret...
|
|
|
stackoverflow.com
- 2013-02-27 08:04:12
- Similar
- Report/Block
the below code is working from left to right swiping now i would like set the same > thing from the right to left also.swiping is working but the speakout is getting crashed > with position.in pageAdapter forward swiping is working good.and backward swiping is also > working good only but Textto speech is not correctly working check the...
|
|
|
stackoverflow.com
- 2013-04-12 01:52:07
- Similar
- Report/Block
I know how to stretch background image to fit its container's content (use background-size ). But how to do the other way around, besides setting width and height manually? EDIT To make my point more clearly, assume I have a tag with one line of text, then I set its background-image to an image of size 800px*600px. How to adjust the widt...
|
|
|
|
stackoverflow.com
- 2013-03-22 22:30:30
- Similar
- Report/Block
I'm using the Bootstrap framework, and I have a parent div containing an image with a position of relative, and a child div containing an image with a position of absolute. I'm using left and top with percentages to push the child div to the bottom right corner of the parent div. In Chrome and Safari everything works as expected with the...
|
|
|
stackoverflow.com
- 2013-02-26 12:41:17
- Similar
- Report/Block
I have program in which I have lots of buttons. Each of button has background set as Image is showing as background in .xaml when program not running but when i run application image is not there as background of button. How do i debug this background in button ? Is there any goofy error that is there?...
|
|
|
gabrieleromanato.com
- 2013-02-10 08:30:48
- Similar
- Report/Block
Creare immagini di sfondo che scrollano in modo infinito è semplice con jQuery se si sa come operare sulla proprietà CSS background-position . Vediamo insieme i dettagli di questa soluzione. Definiamo per prima cosa gli stili CSS: #bg { width: 100%; height: 300px; background-image: url(image.jpg); background-repeat: repeat-x; backgro...
|
|
|
|
cyberforum.ru
- 2013-04-19 14:33:41
- Similar
- Report/Block
Такая задача, при наведении на один обект должен срабатывать hover для других обектов(картинок спрайтов), пишу код но почемуто ничего не происходит, помогите исправить ошибку. HTML Код: CSS Код: #img1 { width:20px; height:20px; background:url (image1.jpg); } #img1:hover { background-position:0 -20px;} #img2 { width:20px; height:20px; back...
|