Jump to content

Header modification question


ajensen27

Recommended Posts

Can someone please point me in the right direction. I want to remove the space between the logo and the top nav bar. So basically I wan the header to be my logo then right next to that in the center would be the search bar (can I make this smaller?) and then next to that my cart.

 

I've been tinkering around with the header.tpl file but I'm not an expert on web design (I can understand the basics).

 

Appreciate anyone's help on this.

 

Thanks!

Alex

Link to comment
Share on other sites

Hello,

 

I am trying to move the logo down so that it is in line with the search bar (can this be made smaller too?) and shopping cart in the header. Can someone please help me figure out how to do this? I tried messing with the header.tpl file but couldn't figure it out.

 

Thanks!

Alex

Link to comment
Share on other sites

Could you be so kind as to explain where in the global.css I would make these changes? I'm not very proficient in web design but can pick it up quickly.

 

Would I modify any of this code?

 

/* ************************************************************************************************
 HEADER
************************************************************************************************ */
#header {position:relative}
#header_logo {
float:left;
display:block;
margin-top:30px;
}
#header_right {
position:relative;
float: right
}

Link to comment
Share on other sites

Thank you, thank you, thank you!!!! That did it!

 

Can I ask what software you are using above to view the code?

 

-Alex

 

That is a Firebug addon. You can add this feature both to firefox and chrome.

firebug for firefox: http://getfirebug.com/

firebug for chrome: https://chrome.google.com/webstore/search/firebug

 

version for firefox is much better

  • Like 2
Link to comment
Share on other sites

  • 8 months later...

in the global.css near the line 235 you've got:

 

#header_logo {
display: block;
position: absolute;
left: 0px;
top: 64px;
}

 

try to decrease top: 64px; value

for example to 47px;

 

effect:

4eFcIAd.png

 

 

code to achieve this:

 

#header_logo {
display: block;
position: absolute;
left: 0px;
top: 47px;
}

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...