Hi everybody,

I am new in drupal, trying to create a site, but unfortunately I can't make any table visible in my pages, using the Pixture theme.
I have to use this theme, and don't know which .css file is responsible for that, and what I could do about it.

Any suggestion would be great, thanx!

CommentFileSizeAuthor
pixture_theme.JPG25.06 KBhartzoul
other_theme.JPG10.18 KBhartzoul
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

lyricnz’s picture

Project: Drupal core » Pixture
Version: 6.12 » 6.x-1.0
Component: theme system » User interface
Assigned: hartzoul » Unassigned

Very old, but not Core.

Deepika.chavan’s picture

Hi,
- Create one custom css file in '/css ' dir, say 'local.css'.

- Add following code in 'pixture.info' file.
stylesheets[all][] = css/local.css

- Try adding following css code in your custom css (i.e. local.css) file :

#main table.node .content table {
  border: 2px ridge #000000;
}

#main table.node .content tbody {
  border-top: none;
}

#main table.node .content tr, #main table.node .content tr.even {
  background: #dedede;
}

#main table.node .content table tr th {
  background: #757575;
}

#main table.node .content tr td, #main table.node .content tr th {
  border: 1px solid white;
  padding-left: 1em;
}

#main table.node .content table tr th, #main table.node .content table tr th a, #main table.node .content table tr th a:hover {
  color: white;
}

- Please clear cached data here- /admin/settings/performance

Rgrds,

Deepika Chavan.