Jump to content

need help with user info block


Recommended Posts

I suggest that you absolute positioning to do that. For example, change the following of lines 190-194 of global.css (in PrestaShop v1.3.2) from:

#page {
   width: 980px;
   margin: 0 auto 2px auto;
   text-align: left
}



to:

#page {
   width: 980px;
   margin: 0 auto 2px auto;
   text-align: left
   position: relative;
}

#header_user
{
   position: absolute;
   top: 50px;
   right: 50px;
}



This should make the user info appear 50px from the top-right corner of the page. You can change those values until it is in the position you want.

Link to comment
Share on other sites

  • 3 months later...

hey guys,

please can you guys help


help required with the positioning topic....
struggling to figure this out...
if anyone can point me in the right direction

See attached picture...

looking to move that info from the RED block to the yellow Block..


Thanks

37636_3zmGyb5kpbujVvlp9rTt_t

Link to comment
Share on other sites

Change the /* block top user information */ section of global.css:

#header_right #header_user {
   float: right;
   width: 535px;
   text-align: right;
   margin-right: 6px
}



to:

#header_right #header_user {
   float: right;
   width: 535px;
   text-align: right;
   margin-right: 6px;
   margin-top: -20px
}

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