raghav472 Posted August 27, 2013 Share Posted August 27, 2013 Hi I am new to this prestashop, How to change the UI of a particular page in Prestashop theme? Can we able to do the UI changes in registration page?? please help me.. Link to comment Share on other sites More sharing options...
vekia Posted August 27, 2013 Share Posted August 27, 2013 you mean user interface? for back office or front end? Link to comment Share on other sites More sharing options...
raghav472 Posted August 27, 2013 Author Share Posted August 27, 2013 yes, I need to change the front end UI design of registration page in a particular theme. can i write html script in Authentication.tpl ?file?? Link to comment Share on other sites More sharing options...
vekia Posted August 27, 2013 Share Posted August 27, 2013 if you want to change css styles - you can do it easily in global.css file located in your theme directory (css subdirectory) you can define there new styles for each element on this page with styles like #authentication a {STYLES} etc. of course you can also modify the authentication.tpl file Link to comment Share on other sites More sharing options...
raghav472 Posted August 27, 2013 Author Share Posted August 27, 2013 Can i remove the side bar from this tpl file??? Link to comment Share on other sites More sharing options...
vekia Posted August 27, 2013 Share Posted August 27, 2013 you can use this css styles: #authentication #right_column {display:none;} 1 Link to comment Share on other sites More sharing options...
raghav472 Posted August 27, 2013 Author Share Posted August 27, 2013 Yeah.. Thanks vekia one more small help.. I need that form to be on rightside column. I need to add some text content on left column. Link to comment Share on other sites More sharing options...
vekia Posted August 27, 2013 Share Posted August 27, 2013 you can change #authentication #center_column settings for example float:right; width:200px; etc. Link to comment Share on other sites More sharing options...
raghav472 Posted August 27, 2013 Author Share Posted August 27, 2013 when i am changing in #authentication #center_column settings, the styles are affecting on other pages.. Link to comment Share on other sites More sharing options...
vekia Posted August 27, 2013 Share Posted August 27, 2013 it shouldn't affect other websites. if you use #authentication #center_column - it mean, that styles are related to the #authentication page and to #center_column only can you show your website? any url? Link to comment Share on other sites More sharing options...
raghav472 Posted August 27, 2013 Author Share Posted August 27, 2013 Hi Instead of hiding right_column, how can i hide <aside class="grid_6"> … </aside> in authentication?? Link to comment Share on other sites More sharing options...
netss-design.pl Posted August 27, 2013 Share Posted August 27, 2013 #authentication aside.grid_6 {display:none} Link to comment Share on other sites More sharing options...
Recommended Posts