Advanced search  

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Pages: [1]   Go Down

Author Topic: Anabolica backround image  (Read 3038 times)

0 Members and 1 Guest are viewing this topic.

Konstantinos

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 120
Anabolica backround image
« on: May 31, 2005, 07:41:41 pm »

Can somebody plz tell me how to modify the code to make the anabolica backround image to be at top right side instead of middle left? thanx
Logged

snork13

  • Contributor
  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 260
  • Internet! Is that thing still around?
    • Gallery
Re: Anabolica backround image
« Reply #1 on: June 01, 2005, 12:29:40 am »

hello,


look in your themes/anabolica/style.css and find the body tag as shown below and look at background-position: left;
Code: [Select]
body {
background-attachment: fixed;
background-color: #000000;
background-image: url(images/background.jpg);
background-position: left;
background-repeat: no-repeat;
color: #FFFFFF;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
margin: 0px;
margin: 0px;
scrollbar-3dlight-color: #555555;
scrollbar-arrow-color: #777777;
scrollbar-darkshadow-color: #333333;
scrollbar-face-color: #444444;
scrollbar-highlight-color: #444444;
scrollbar-shadow-color: #333333;
scrollbar-track-color: #333333;
}

the main problem i see when messing around is the hulk image is made to be left, you will see down by his foot. Also the themes/anabolica/template.html file is align to the right as shown below so you will to change to get the effect you what

Code: [Select]
<script type="text/javascript" src="scripts.js"></script>
</head>
<body>
<table width="80%" height="100%" border="0" cellpadding="20" cellspacing="20" align="right">

hope this gets you started, maybe with permisson you could do something with the hulk image to the effect. DaMysterious themes can be quit involved, make sure to make back-ups just in case of errors.

good luck,

snork13
Logged

Konstantinos

  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Posts: 120
Re: Anabolica backround image
« Reply #2 on: June 01, 2005, 09:29:58 pm »

thanx still i cant figure out how to make it be in the right  ;D
Logged

snork13

  • Contributor
  • Coppermine frequent poster
  • ***
  • Offline Offline
  • Gender: Male
  • Posts: 260
  • Internet! Is that thing still around?
    • Gallery
Re: Anabolica backround image
« Reply #3 on: June 01, 2005, 10:52:57 pm »

thanx still i cant figure out how to make it be in the right  ;D


in themes/anabolica/style.css look for

Code: [Select]
body {
background-attachment: fixed;
background-color: #000000;
background-image: url(images/background.jpg);
background-position: left;
background-repeat: no-repeat;
color: #FFFFFF;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
margin: 0px;
margin: 0px;
scrollbar-3dlight-color: #555555;
scrollbar-arrow-color: #777777;
scrollbar-darkshadow-color: #333333;
scrollbar-face-color: #444444;
scrollbar-highlight-color: #444444;
scrollbar-shadow-color: #333333;
scrollbar-track-color: #333333;
}

and change to

Code: [Select]
body {
background-attachment: fixed;
background-color: #000000;
background-image: url(images/background.jpg);
background-position: right;
background-repeat: no-repeat;
color: #FFFFFF;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
margin: 0px;
margin: 0px;
scrollbar-3dlight-color: #555555;
scrollbar-arrow-color: #777777;
scrollbar-darkshadow-color: #333333;
scrollbar-face-color: #444444;
scrollbar-highlight-color: #444444;
scrollbar-shadow-color: #333333;
scrollbar-track-color: #333333;
}
Logged
Pages: [1]   Go Up
 

Page created in 0.019 seconds with 20 queries.