Aligning background image hard right?

This is a discussion on "Aligning background image hard right?" within the Web Page Design section. This forum, and the thread "Aligning background image hard right? are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jan 20th, 2007, 20:56
Junior Member
Join Date: Jan 2007
Location: UK
Age: 23
Posts: 45
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to Inkers Send a message via MSN to Inkers
Aligning background image hard right?

I have a background image on my website http://www.helioslune.co.uk which is set on a black background. However, about half way down the page it is not a true black which means an edge is visible. I want to align the background image to the right to eliminate this problem. Is this possible? I've tried several variations in my css to try and obtain this but it either has no affect or makes my image just vanish.

My Body Code:

body {
background:url(images/backgroundpic.jpg) no-repeat;
background-color:black;
font-size:11pt;
font-family:Sans Serif, Arial;
color:#FFFFFF;
}

Can anyone help or offer any suggestions as to what I might do?
Reply With Quote

  #2 (permalink)  
Old Jan 20th, 2007, 22:19
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Aligning background image hard right?

Correct, with shorthand:

Code: Select all
body {
    background: #000 url("images/backgroundpic.jpg") no-repeat 100% 0;
    font: 11pt arial,sans-serif;
    color: #fff;
}
Reply With Quote
  #3 (permalink)  
Old Jan 21st, 2007, 08:00
Junior Member
Join Date: Jan 2007
Location: UK
Age: 23
Posts: 45
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to Inkers Send a message via MSN to Inkers
Re: Aligning background image hard right?

Oh brilliant that's it! Thank you very, very much! It seems to have made a couple of my images elsewhere go a bit loopy but I should be able to fix that.

Thank you again!
Reply With Quote
Reply

Tags
align, background, images

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Fix background image in IE6 tenderfoot Web Page Design 1 Jan 30th, 2008 11:02
background image not big enough mykl Web Page Design 7 Oct 11th, 2007 19:08
Background image overlaping footer image at bottom of div lw_d Web Page Design 4 Mar 21st, 2006 00:27
Background Image jwalker80 Web Page Design 2 Dec 22nd, 2005 14:52
Need help with my background image!!! courtjester Web Page Design 3 Sep 30th, 2003 15:25


All times are GMT. The time now is 13:36.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43