Hi Emma,
You can make the login box permanently visible on your site as following:
– Open “template.css” file on “templates/ja_cooper/css” folder.
– Find the following code near line 1307, change style
#ja-login {
padding: 5px 15px 0;
background: #181818;
overflow: hidden;
position: absolute;
top: 85px;
right: 20px;
display: none;
z-index: 999;
height: 50px;
border: 1px solid #222222;
text-align: left;
}
To
#ja-login {
padding: 5px 15px 0;
background: #181818;
overflow: hidden;
position: absolute;
top: 85px;
right: 20px;
display: block; /* set display = block to show login box when load page*/
z-index: 999;
height: 50px;
border: 1px solid #222222;
text-align: left;
}