Hi Federica,
- you can remove the logo and smartaddons text by going to "your_site/templates/smart_news25/css/template.css", finding:
#yt_header h1.logo {
float: left;
margin: 16px 0 0;
padding: 0;
}
change to
#yt_header h1.logo {
float: left;
margin: 16px 0 0;
padding: 0;
display: none
}
- you can change the background of login and register module by going to "your_site/templates/smart_news25/css/template.css", finding:
#header1 ul li.yt-login a.login-switch {
background: url("../images/mod_login_item1.png") no-repeat scroll left top transparent;
height: 27px;
padding: 0 8px;
}
change to
#header1 ul li.yt-login a.login-switch {
background: your_background_1;
height: 27px;
padding: 0 8px;
}
-----------------------------------------
#header1 ul li.yt-register a.register-switch {
background: url("../images/mod_login_item2.png") no-repeat scroll right top transparent;
height: 27px;
padding: 0 8px;
}
change to
#header1 ul li.yt-register a.register-switch {
background: your_background_2;
height: 27px;
padding: 0 8px;
}
Thanks