Background Color #DDDDDD

Memovie Joomla Template support forum for Joomla 1.5 only.
GK User
Thu Apr 01, 2010 11:59 am
Can some one tell me how I can change the main Background color of this template. Ive looked every where to find where I could change it.
User avatar
Fresh Boarder

GK User
Thu Apr 01, 2010 2:19 pm
Hi

Please add this code on template.css file:

Code: Select all
#gk-content {background: #DDD}


Cheers ;)
User avatar
Platinum Boarder

GK User
Thu Apr 01, 2010 2:44 pm
Is there anywhere specific I need to add this code sorry not too advanced in codes but if you could show before which script and after which script thank you.
User avatar
Fresh Boarder

GK User
Thu Apr 01, 2010 3:58 pm
Any were on template.css file.

Cheers
User avatar
Platinum Boarder

GK User
Thu Jun 17, 2010 6:07 pm
GK Content changes the background color of the content background.

How would we change the actual background color?

:)
User avatar
Fresh Boarder

teitbite
Sun Jun 20, 2010 11:06 pm
Hi

Please show me exacly what You got in mind. Add some photos, discribe it with examples, etc.
User avatar
Moderator

GK User
Mon Jun 21, 2010 2:58 am
I want to change the actual background color. I figure since there is the ability to change background images from the template parameters that maybe that is why there is no body{ background-color:dddddd; } ????
User avatar
Fresh Boarder

GK User
Mon Jun 21, 2010 7:43 am
go to the css folder and change the files memovie #1-2-3-4

from
Code: Select all
   background:#ddd url('http://demo.explode.dk/memovie/templates/gk_memovie/images/backgrounds/bg.jpg') no-repeat fixed center 0!important;

to
Code: Select all
   background:#000 url('http://demo.explode.dk/memovie/templates/gk_memovie/images/backgrounds/bg.jpg') no-repeat fixed center 0!important;


if you want to get rid of the image totally you can just call it :
Code: Select all
background:#000


you could also make a jpg file all black hehe
User avatar
Platinum Boarder

GK User
Mon Jun 21, 2010 5:09 pm
haha

I can't seem to find the "background:#ddd url('http://demo.explode.dk/memovie/templates/gk_memovie/images/backgrounds/bg.jpg') no-repeat fixed center 0!important;"

anywhere in the style1,2, or 3.css files to change the bg color. :(

I will just set the background to be fixed so the user never sees bellow my background image.
User avatar
Fresh Boarder

GK User
Mon Jun 21, 2010 5:24 pm
Hi

You can find this code on:

../templates/gk_memovie/layouts/blocks/head.php

Code: Select all
body#bd{
   background:#ddd url('<?php echo $this->templateurl(); ?>/images/backgrounds/<?php echo $this->_tpl->params->get("bg_image"); ?>') no-repeat<?php echo ($this->_tpl->params->get('fixed_bg') == 1) ? ' fixed' : ''; ?> center 0!important;


Any attempt to change body#bd element on css will not have success, because this line have !important rule. So, change it directly or remove !important and add your own class on css file.

Cheers ;)
User avatar
Platinum Boarder

GK User
Mon Jun 21, 2010 5:44 pm
Thanks!
User avatar
Fresh Boarder


cron