|
I have a tiling background image, but I want to overlay another tiling image over it. I have tried using:
html {background: transparent url('../images/bgtile.jpg') repeat top center;} body {background: transparent url('../images/body.png') repeat-y top...
Started by Uberlemurguy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Url('../images/bgtile.jpg') repeat top center; height: 100%; } body { background: transparent urlTry this (It works in FF3 and IE7 and I assume Safari and Chrome):
html { background: transparent('../images/body.png') repeat-y top....
|
|
I have a jquery script that allows for changing the body background
i want to have the background image of the body scaled to the browser window size there is a script called http://www.buildinternet.com/project/supersized/ but i am not able to make use...
Started by vache on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You won't be able to do this cross-browser until the advanced background properties to click links with the filter loaded on a background - you won't be able to click the links until to set this image as a background....
Img the lowest.
|
|
I want to include a mini menu 20px by 20px images of potential backgrounds. When a user clicks on one them the body background image will change and the selection saved as the users choice.
I've thought of using a slider but I don't know how I would be...
Started by vache on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I don't know if this....
background css $("body").css("background", "url('" + imgLink + "')"); }); });
I had the same problem(){ $("#BGSelector a").click(function() { var imgLink = $("img", this).attr("src"); // change the body.
|
Ask your Facebook Friends
|
Hi,
I'm changing my background-image css property using Mootools:
$(document.body).setStyle('background-image','url(' + pBackground + ')');
And it's its working, but how can a make one fade effect between picture change?
Thanks, Pedro
Started by Pedro on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
For your situation....
You have to fade the element that has the background.
You can't fade a background specifically...
Looks, you could try to set an opacity, to simulate an opacity on the body, which can lead to the effect you want..
|
|
Hello,
I was wondering if it's possible to affect the positioning of the body; I have a 500 x 500 pixel image I have positioned in the center of the page, set not to repeat. I was wondering if it's possible to skew the positioning somehow so that it appears...
Started by Brian on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It takes 2 values, separated by a space, like so:
background....
Investigate the use of background-position rule in CSS.
You could causing hair-loss.
That will shunt the image down 20px.
Make your background image 40px taller at the top.
|
|
I want to make a body background switcher using jquery. you will have some buttons and each will change the body bg according to your choice. and i want to make it so like that it will save a cookie so that it can retrieve user's choice when you change...
Started by kakkalo on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have a look at this article which should help you with saving/retreiving and delteing cookies:
http://www.quirksmode.org/js/cookies.html
Also have a look at the Cookie plugin for jQuery, which allows you to do stuff like this:
$.cookie('the_cookie', ... .
|
|
I am trying to retrieve a saved url from a jquery cookie its saving in the cookie but its not retrieving the cookie url
$(document).ready(function() { $("#BGSelector a").click(function() { var imgLink = $("img", this).attr("src"); $.cookie("html_img",...
Started by vache on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
"); $("html").css("background", "url('" + imgCookieLink + "')"); }); }); </script> <div id("html_img"); $("html").css("background", "url('" + imgCookieLink + "')"); }); </script>.
|
|
Before and after:
In XenForo 1.1 the body tag has a class that indicates the node_id. For example, in this forum you can see this body tag in the source:
Code: <body class="node37 node27">
You can use this to set a custom body background for individual...
Started by Jake Bunce on
, 12 posts
by 9 people.
Answer Snippets (Read the full thread at xenforo):
For example, this will change....
But you can use the body class to reference any other element on the page.
Here's a mini pic of my test site (very close to going live yay!)
Is the "background" governed here the brown area?
Or the cream? Brown.
|
|
For the body text of the site i am constructing, i am preparing a frame which will be the background of the text. It will be decorated using Ps techniques.
But i have the following the question. This frame will be put as backg-image property.
Since the...
Started by jimfog on
, 11 posts
by 2 people.
Answer Snippets (Read the full thread at invisionzone):
So you'll have to set the background of the body to your gradient....
So you'll have to set the background of the body to your gradient border, since you said you want maximum compatibility.
Said you want maximum compatibility.
|
|
I want to create an html page with a watermark. I set the background-image on the body. However I have some elements that are not allowing the background image to bleed through. They define their own background-color (but not background-image), overriding...
Started by Josh Buedel on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
The divs and the table are not transparent the background color of an element it's not going to allow images underneath it to "bleed through, and they are in front of the....
You're setting the background-image for the body element.
|