Hardwired Background Hardwired Background
 

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

Main Menu

Hardwired Background

Started by GladiatoR, December 06, 2005, 07:36:10 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

GladiatoR

Hi, i'm just curious to see if there is a way to change the background on the hardwired theme since it causes a few problems with people that have lcd monitors. Is there a way to change it to a black color or any other color to be exact?

Regards Joe.

Tranz

you can change the theme's css file.

GladiatoR

Yes but where abouts do I change it to get rid of the little lines in the background and must make it a solid color?

Joachim Müller

edit http://yoursite.tld/your_coppermine_folder/themes/hardwired/images/hardwired.gif with an image editor (MS Paint is fine) to remove those lines, or edit http://yoursite.tld/your_coppermine_folder/themes/hardwired/style.css, findbody {
        font-family : Verdana, Arial, Helvetica, sans-serif;
        font-size: 10px;
        color : #AEAEAE;
        margin: 0px;
        background-color:#000000;
        background-image:url(images/hardwired.gif);
        background-repeat:repeat;
        }
and get rid of the background image by replacing it withbody {
        font-family : Verdana, Arial, Helvetica, sans-serif;
        font-size: 10px;
        color : #AEAEAE;
        margin: 0px;
        background-color:#000000;
        /*background-image:url(images/hardwired.gif);*/
        background-repeat:repeat;
        }