Logged Out
Create an Account
Login:
Password:

Forgot your password?
Adding option to Background Image menu

Adding option to Background Image menu
[Back to Index]
Thread Tags
Primary: [Suggestions]
Secondary: None

Just wondering if we could get an option in the Background Image Upload menu that would let us set the background to fixed attachment (I think that is what it's called). Basically, an option that would let the background not move while the rest of the pages scroll. Thanks!

Alcinoe


--
This thread delivers!
This can be done real easily with CSS in the advanced layouts.

Just get the "default.css" file

and edit these lines:

BODY,.body {cursor: default;
font-family: Tahoma ,sans-serif;
font-size: 9pt;
background-image: url(http://dkpfiles.com/unknownentity/background);
background-color: #262626;
color: #df1f1f;}


by adding this:

backgroud-attachment: fixed;


so it will looks something like:

BODY,.body {cursor: default;
font-family: Tahoma ,sans-serif;
font-size: 9pt;
background-image: url(http://dkpfiles.com/unknownentity/background);
background-color: #262626;
backgroud-attachment: fixed;
color: #df1f1f;}


You will need to upload the css file.

You then need to change the layout.htm in the advanced layout page. Look for this line I think it is one of the first few lines on the page.

<link rel="stylesheet" href="style.php" type="text/css">


Change it to point to your new css file

<link rel="stylesheet" href="http://dkpfiles.com/yourguildssubdomain/files/default.css" type="text/css">


Then upload the new layout.htm file and you should be good to go.
Quote by Kriknosnah
This can be done real easily with CSS in the advanced layouts.

Just get the "default.css" file

and edit these lines:

BODY,.body {cursor: default;
font-family: Tahoma ,sans-serif;
font-size: 9pt;
background-image: url(http://dkpfiles.com/unknownentity/background);
background-color: #262626;
color: #df1f1f;}


by adding this:

backgroud-attachment: fixed;


so it will looks something like:

BODY,.body {cursor: default;
font-family: Tahoma ,sans-serif;
font-size: 9pt;
background-image: url(http://dkpfiles.com/unknownentity/background);
background-color: #262626;
backgroud-attachment: fixed;
color: #df1f1f;}


You will need to upload the css file.

You then need to change the layout.htm in the advanced layout page. Look for this line I think it is one of the first few lines on the page.

<link rel="stylesheet" href="style.php" type="text/css">


Change it to point to your new css file

<link rel="stylesheet" href="http://dkpfiles.com/yourguildssubdomain/files/default.css" type="text/css">


Then upload the new layout.htm file and you should be good to go.


alright. i did all that. when i test the new layout, it works. when i go live it's all broken. i no longer have a logo. i'm stuck with the admin file upload page as the main box on every page and then whatever page i'm trying to go to below that. very frustrating. what am i doing wrong?


--
This thread delivers!
nevermind. not sure what happened. but it worked right after i post this. thanks.


--
This thread delivers!


[Back to Index]