Fórum

theme logo problem

biswajit sarkar, modificado 12 Anos atrás.

theme logo problem

Regular Member Postagens: 166 Data de Entrada: 17/10/11 Postagens Recentes
I created a custom theme.
everyrhing working perfect except the logo....

I attach the logo from "Display Settings" but the logo still not appear in my theme.
I dnt find any thing wrong in my code .... anyone know why this happen..

for logo part my code is following

<h1 class="company-title">
<a class="logo" href="$company_url" title="#language("go-to") $company_name">
<span>$company_name</span>
</a>
</h1>
thumbnail
Ravi Kumar Gupta, modificado 12 Anos atrás.

RE: theme logo problem

Liferay Legend Postagens: 1302 Data de Entrada: 24/06/09 Postagens Recentes
Can you please check the logs for errors, if any? Also, are you able to see the updated logo in Display settings.?
biswajit sarkar, modificado 12 Anos atrás.

RE: theme logo problem

Regular Member Postagens: 166 Data de Entrada: 17/10/11 Postagens Recentes
there is no error in log......
and yes Im able to the updated logo in display settings
thumbnail
Ravi Kumar Gupta, modificado 12 Anos atrás.

RE: theme logo problem

Liferay Legend Postagens: 1302 Data de Entrada: 24/06/09 Postagens Recentes
hmm.. are you working on LR6.0.x? Can you check with firebug for any missing resource in "net". It should appear unless css has some fault.

Check for this in firebug, something like should be in css

#heading .logo {
    background: url("/image/company_logo?img_id=0&amp;t=1330594533550") no-repeat scroll 0 0 transparent;
    display: block;
    font-size: 0;
    height: 76px;
    text-indent: -9999em;
    width: 209px;
}


One clarification though.. are you able to see old logo or no logo at all.. ??
biswajit sarkar, modificado 12 Anos atrás.

RE: theme logo problem

Regular Member Postagens: 166 Data de Entrada: 17/10/11 Postagens Recentes
Ravi Kumar Gupta:
hmm.. are you working on LR6.0.x? Can you check with firebug for any missing resource in "net". It should appear unless css has some fault.

Check for this in firebug, something like should be in css

#heading .logo {
    background: url("/image/company_logo?img_id=0&amp;t=1330594533550") no-repeat scroll 0 0 transparent;
    display: block;
    font-size: 0;
    height: 76px;
    text-indent: -9999em;
    width: 209px;
}


One clarification though.. are you able to see old logo or no logo at all.. ??



in display settings I able to see the logo which i save but in home page only link is appear
thumbnail
Ravi Kumar Gupta, modificado 12 Anos atrás.

RE: theme logo problem

Liferay Legend Postagens: 1302 Data de Entrada: 24/06/09 Postagens Recentes
hmm.. which link.. and what about css, did you check that?
biswajit sarkar, modificado 12 Anos atrás.

RE: theme logo problem

Regular Member Postagens: 166 Data de Entrada: 17/10/11 Postagens Recentes
Ravi Kumar Gupta:
hmm.. which link.. and what about css, did you check that?



I check the css..... it not shows in firebug...and the logo still not appear
biswajit sarkar, modificado 12 Anos atrás.

RE: theme logo problem

Regular Member Postagens: 166 Data de Entrada: 17/10/11 Postagens Recentes
If I want to write that css "#heading .logo" in "custom.css"....how can write this class...anyone plz guide
thumbnail
Ravi Kumar Gupta, modificado 12 Anos atrás.

RE: theme logo problem

Liferay Legend Postagens: 1302 Data de Entrada: 24/06/09 Postagens Recentes
That is by default in css files in theme/css folder. If you want to put that, put in custom.css file. There should be a _diff folder in your custom theme. Put custom.css there in css folder.

For more search this site for themes development. If you still facing a problem after that.. let us know.

this should help you.. http://www.liferay.com/documentation/liferay-portal/6.1/development/-/ai/creating-liferay-them-7
biswajit sarkar, modificado 12 Anos atrás.

RE: theme logo problem

Regular Member Postagens: 166 Data de Entrada: 17/10/11 Postagens Recentes
Ravi Kumar Gupta:
That is by default in css files in theme/css folder. If you want to put that, put in custom.css file. There should be a _diff folder in your custom theme. Put custom.css there in css folder.

For more search this site for themes development. If you still facing a problem after that.. let us know.

this should help you.. http://www.liferay.com/documentation/liferay-portal/6.1/development/-/ai/creating-liferay-them-7



thanks for your support...
I solve the problem...
here is my code...i add the code (red)
<h1 class="company-title">
<a class="logo" href="$company_url" title="#language("go-to") $company_name"><img alt="" src="$company_logo">
<!--<span>$company_name</span>-->
</img>
</a>

</h1>
Bradley Wood, modificado 12 Anos atrás.

RE: theme logo problem

thumbnail
Ravi Kumar Gupta, modificado 12 Anos atrás.

RE: theme logo problem

Liferay Legend Postagens: 1302 Data de Entrada: 24/06/09 Postagens Recentes
hmm.. Thanks Bradley for the note.. I will take care of this in future.. emoticon
thumbnail
Ádám T. Nagy, modificado 11 Anos atrás.

RE: theme logo problem

New Member Postagens: 6 Data de Entrada: 01/06/12 Postagens Recentes
Hi,

I know it is a bit old thread, I just wanted to add something for the records:

To make the theme force to resize a logo image you can use:

#heading .site-title .logo.default-logo img {
    height: 32px;
    width: 100px;
    /*display: none;*/
}


Thank you for the tips by the way,
Adam