modify the default Wind theme

mosquito2012
mosquito2012's picture

Joined: 2012-11-09
Posts: 80
Posted: Mon, 2012-11-12 10:34

Hi All,

I have managed to change the banner logo from a helpful post by FloriDave, but I needed to change a few things on the theme, any help would be appreciated.

• Change the background colours
• Move the Menu so it is further across to the right
• Is there a way to move the "share photo" module which is on the individual photo page (the one with the twitter, facebook etc logos on it in a row at the bottom) further up and made smaller?

My site is:

www.whatiseewhenilookat.com

Really appreicate the help.

Rob.

 
tempg

Joined: 2005-12-17
Posts: 1857
Posted: Tue, 2012-11-13 14:08

Add this to the bottom of your theme's screen.css file:

.g-view {background-color: #cecece;}
#g-site-menu {left: 300px;}
 
mosquito2012
mosquito2012's picture

Joined: 2012-11-09
Posts: 80
Posted: Tue, 2012-11-13 21:23

hiya managed to figure that one out. any ideas on the bg image ?

 
tempg

Joined: 2005-12-17
Posts: 1857
Posted: Tue, 2012-11-13 21:28

What bg image are you talking about? And what are you trying to do with it?

 
mosquito2012
mosquito2012's picture

Joined: 2012-11-09
Posts: 80
Posted: Tue, 2012-11-13 22:40

with the wind theme there is no image in the bg of the site, I wanted to add a BG image to it

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Tue, 2012-11-13 23:20

just add it to the body tag of the css you are editing
body {background-image:url('paper.gif');}
But it will be covered with the rest of the content. So you will have to add that to the other parts that you want it added to as well.

Dave

_____________________________________________
Blog & G2 || floridave - Gallery Team

 
mosquito2012
mosquito2012's picture

Joined: 2012-11-09
Posts: 80
Posted: Wed, 2012-11-14 10:31

Hiya Dave, thanks again for all your help, I can't seem to get this to work, I have tried removing the BG colour in the theme CSS file but not having much luck,

here is my current code in the wind theme CSS file

html {
background-color: #070707;
color: #929292;
margin:0;
padding:0;
}

body {
color: #070707;
background: url(../images/bg.jpg) no-repeat scroll center top;
font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
width: 100%;
}

I changed it to:

html {
background-color: #070707;
color: #929292;
margin:0;
padding:0;
}

body {
background-image: url(../images/bg.jpg) no-repeat scroll center top;
font-family: 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
width: 100%;
}

 
tempg

Joined: 2005-12-17
Posts: 1857
Posted: Wed, 2012-11-14 14:14
mosquito2012 wrote:
background-image: url(../images/bg.jpg) no-repeat scroll center top;

You added this to the body tag and told it not to repeat the image and to place it at the top in the center. The body is in the back of the page. Basically, the other parts of the page (the black banner and the gray section) are on top of the image; that's why you can't see it. Either move it to another section/div or take out the no-repeat.

 
mosquito2012
mosquito2012's picture

Joined: 2012-11-09
Posts: 80
Posted: Wed, 2012-11-14 14:24

thanks tmpg, I will make the changes you mentioned and try use firebug to remove the grey section

 
tempg

Joined: 2005-12-17
Posts: 1857
Posted: Wed, 2012-11-14 14:42

We just put the gray section there (my first post in this thread).

Just do this: .g-view {background-image: url(../images/bg.jpg);}
If that's not exactly what you want (or it doesn't work for some reason, definitely try firebug, then report back.
Either way, firebug will be useful going forward; I expect other issues to arise when you do this.

 
mosquito2012
mosquito2012's picture

Joined: 2012-11-09
Posts: 80
Posted: Wed, 2012-11-14 19:25

managed to get the Bg changed and starting to understand this CSS stuff :-)

 
tempg

Joined: 2005-12-17
Posts: 1857
Posted: Wed, 2012-11-14 23:00

Glad it's working out for you.

Because of your other changes, you MAY want to try adding this too:

#g-content #g-album-grid .g-item {background-color: transparent}
#g-content #g-album-grid .g-hover-item {background-color: #000}
 
mosquito2012
mosquito2012's picture

Joined: 2012-11-09
Posts: 80
Posted: Thu, 2012-11-15 00:48

cool will add these lines, thanks again for all your help.