Remove register Button

GK User
Tue Dec 13, 2011 1:13 pm
I need to remove user registration and login to leave the choice. Now remove the joomla configuration option but did not disappear the button. I searched and nothing modules.

regards
User avatar
Fresh Boarder

GK User
Tue Dec 13, 2011 2:17 pm
Hi.
To remove user registration and login buttons you need to change some code in template.css file which you can find in templates -> gk_twn2 -> css - >template.css. Change:
Code: Select all
#gk-buttons #btn_login { display: block; float: left; height: 21px; padding: 0 0 0 14px; background: transparent url('../images/style1/top_btn_left.png') no-repeat left bottom; }

to:
Code: Select all
#gk-buttons #btn_login { display: none; }

and:
Code: Select all
#gk-buttons #btn_register { display: block; float: left; height: 21px; padding: 0 0 0 14px; }

to:
Code: Select all
#gk-buttons #btn_register { display: none; }
User avatar
Platinum Boarder


cron