Unable To Log Out

I follow this instruction and remove the main logo plus its block. Now I cannot log out because there's no logout button for me.

Is there anyway we just disable the logo and its block in the front page? but will appear for Logged In users?

 

You can edit the file templates/base/css/general.css

Look for this at about line 144

div.sys_main_logo {
position: relative;
z-index: 56;

background-color: #f4f4f4;
}


Change it to look like This. Adding the line in red.

div.sys_main_logo {
position: relative;
z-index: 56;
background-color: #f4f4f4;
display: none;
}


That will hide the entire top block.



 

 http://www.boonex.com/forums/topic/remove-logo-and-its-block.htm

Quote · 9 Sep 2013

Tell me exactly what you want to do.  The problem is that you removed the service menu; you will want to put the header back the way it was; first step undo what you did.  Then I can step you through what changes to make.  You don't want to hide everything.  In fact, there are two ways to go about this, using css or editing the template files.

By the way, when you edit a file, first make a copy of the file; in this case, you copy general.css to general.css.bak.  That way it is easy to get back where you started from.

Geeks, making the world a better place
Quote · 9 Sep 2013

I want to get rid of the logo, I think I should just delete it off then.

Quote · 10 Sep 2013

In general.css in the base or in your template if it has a general.css

div.sys_main_logo .mainLogoText  make the changes indicated in red in the second listing.

 

div.sys_main_logo .mainLogoText {
    line-height:40px;       
    color:#fff;
    font-size:36px;
    font-weight:bold;
    text-decoration:none;
    letter-spacing:2px;
    text-shadow: 0px 1px 0px #ddd, 0px 2px 0px #aaa, 0px 1px 3px rgba(0, 17, 53, 0.9);
}

 

div.sys_main_logo .mainLogoText {
    line-height:40px;       
    color:#fff;
    font-size:36px;
    font-weight:bold;
    text-decoration:none;
    letter-spacing:2px;
    text-shadow: 0px 1px 0px #ddd, 0px 2px 0px #aaa, 0px 1px 3px rgba(0, 17, 53, 0.9);
    display:none;
}

 

As I said, first undo what you did the first time.  If this removes everything then PM me your site and I will take a look and see what is happening.  And clear your caches after making the changes.

Geeks, making the world a better place
Quote · 10 Sep 2013

Thank you Geek Girl. I just deleted the logo off the server for now. tomorrow I will try to re-upload the logo again and use your code to see if that will hide the logo. FYI, I use Dolphin UNI template.

I'd like to have the logo in place because when my site is posted on facebook or other site, the logo will show up there along with the text description that make your site look professional.

 

Quote · 10 Sep 2013

 

Thank you Geek Girl. I just deleted the logo off the server for now. tomorrow I will try to re-upload the logo again and use your code to see if that will hide the logo. FYI, I use Dolphin UNI template.

I'd like to have the logo in place because when my site is posted on facebook or other site, the logo will show up there along with the text description that make your site look professional.

 

I am a little confused because what I gave should hide the logo; yet you say you want the logo in place.  As I said, if you can tell us what you want to accomplish, maybe we can help

Geeks, making the world a better place
Quote · 10 Sep 2013
 
 
Below is the legacy version of the Boonex site, maintained for Dolphin.Pro 7.x support.
The new Dolphin solution is powered by UNA Community Management System.