Change color data-title="title"

0

Colleagues.

I'm using Intel xdk and would like to change the color of the data-title="Title" of that line:

<div class="panel" data-title="Titulo" id="page1" data-header="none" data-footer="none" selected="true">

How would I do it?

    
asked by anonymous 28.10.2016 / 20:58

1 answer

0

Renan. Thanks for the help, but since I'm using Intel xdk to change the font color, it's in the lib / af.ui.css file. The line is this:

.view header h1 {
  position: absolute;
  width: 45%;
  z-index: 1;
  height: 44px;
  font-size: 18px;
  font-weight: bold;
  left: 27.5%;
  color: #000;
  padding: 10px 0;
  text-shadow: rgba(0, 0, 0, 0.8) 0 -1px 0;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
    
28.10.2016 / 21:35