roma2509 Posted October 13, 2010 Share Posted October 13, 2010 Hello.How can I move the User info block like in the attached image?I want it on the right side of horizontal menu block Link to comment Share on other sites More sharing options...
rocky Posted October 13, 2010 Share Posted October 13, 2010 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 More sharing options...
htech Posted January 28, 2011 Share Posted January 28, 2011 hey guys, please can you guys helphelp 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 Link to comment Share on other sites More sharing options...
rocky Posted January 29, 2011 Share Posted January 29, 2011 I suggest adding a negative margin-top to the #header_user section of global.css. Link to comment Share on other sites More sharing options...
htech Posted January 29, 2011 Share Posted January 29, 2011 Thanks for the reply.lol, please explain this.... Link to comment Share on other sites More sharing options...
rocky Posted January 29, 2011 Share Posted January 29, 2011 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 More sharing options...
htech Posted January 29, 2011 Share Posted January 29, 2011 thanks man, ur a champion! will check it Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now