Forum /
Sencha Touch 2.x Forums /
Sencha Touch 2.x: Q&A /
Answered: Title of toolbar not shown
Answered: Title of toolbar not shown
I have changes the background color in css file of toolbar.
After that the title of tool bar is not showing. Even i have tried of changing font color also
Best Answer Posted by
niveditaWebbee
crakin thanx for reply
but it didnt helped.
This is the css code
.x-layout-box-inner{
display:-webkit-box;
position:relative;
color: #FFFFFF;
background-color: #6F4242
}
Maybe z-index
Maybe z-index
I know this might not make a lot sense but maybe try setting the z-index to something higher? It's worth a try.
crakin thanx for reply
but it didnt helped.
This is the css code
.x-layout-box-inner{
display:-webkit-box;
position:relative;
color: #FFFFFF;
background-color: #6F4242
}
Missing semi-colon
Missing semi-colon
Looks like your missing a semi-colon after background color my man. Try this.
.x-layout-box-inner{
display:-webkit-box;
position:relative;
color: #FFFFFF;
background-color: #6F4242;
}
You had:
.x-layout-box-inner{
display:-webkit-box;
position:relative;
color: #FFFFFF;
background-color: #6F4242 <----- There should be a semi colon after this.
}
Semi -colon was needed but still i tried but i still had no effect
Experiment
Experiment
Try this just to test something out. Comment out the display line so
/* display: -webki... */
And see if that has any effect.
Sencha is used by over two million developers. Join the community, wherever you’d like that community to be
or Join Us