Jump to content

[Solved]Changing Footer Bar Height


Recommended Posts

Hello

 

I'm modifying the default theme (PS 1.5). I've managed to remove everything from footer.

 

So it is now left with "Browse the mobile site" text and footer bar.

 

I am struggling to change footer bar's height to smaller.

 

I've gone through global.css and no difference.

 

Please tell me where should I edit this.

 

I've attached my store screenshot for info.

post-486465-0-83667200-1361782771_thumb.jpg

Edited by poekong (see edit history)
Link to comment
Share on other sites

Hi Poekong,

marty meant this part:

 

/* ******************************************************************************

FOOTER

******************************************************************************** */

#footer {

color:#fff;

background:#333

}

 

 

(2 blocks under your header: First breadcrumb, then footer)

 

My 2 cents,

Pascal

 

(P.S. Vekia: Images were just some smileys that don't show up...)

Edited by PascalVG (see edit history)
  • Like 1
Link to comment
Share on other sites

Give it a try and let us know the result...

 

Hi Pascal

 

No it doesn't change when I added the line height to the footer.

 

/* ******************************************************************************

FOOTER

******************************************************************************** */

#footer {

color:#fff;

background:#333;

line-height:10px;

}

Link to comment
Share on other sites

Btw, if you don't want to show the footer at all, you could add

display:none;

 

Just a thought...

 

Wow it's working now. thanks for the help pal....btw the text in the footer "Browse the mobile site" is only appearing half after I've set the line-height.

Link to comment
Share on other sites

Was it your cache clean/recompile that solved it?

 

The text probably has some marging around it, so when the top of the containing box (I.e. the footer box itself) is lowered, the whole text lowers. Not sure where this text layout is defined. I can have a look tonight. (On an iPhone in the car not really convenient ;-) )

Link to comment
Share on other sites

Hi Poekong,

Try this to fix the half appearing text:Edit global.css one more time

 

 

Locate the following code (around line 65):

 

/* positionnement ****************************************************************************** */

.hidden {display:none}

.f_right {float:right}

p.center {text-align:center;}

.clearBoth {clear:both}

 

and change the p.center line into:

 

p.center {text-align:center;height: auto;}

 

 

 

 

and ,in the previous code that we changed before:

#footer {

height: auto; // <-- add this line

color:#fff;

background:#333;

line-height:10px;

}

 

 

 

Hope this helps.

Cheers,

Pascal

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...