Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme »

[SOLVED] How to Override Table CSS?


  #1  
Old Apr 29, 2009, 02:51 PM
jkestler
 
4 posts · Feb 2009
I'd like to style a few HTML tables differently from the theme's "global" styling that I'm using on most pages. The usual methods--CSS inserts, inline CSS--don't seem to work on tables.

Any help is much appreciated!
  #2  
Old Apr 29, 2009, 07:09 PM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
Are you giving the tables a class or better, an ID, so you can address them through CSS?

<table id="table-3">....
</table>


CSS Insert:

HTML Code:
table#table-3 {
...
}
table#table-3 td {
...
}
  #3  
Old Apr 29, 2009, 09:31 PM
jkestler
 
4 posts · Feb 2009
Thanks very much.

Turns out the problem was that the CSS override didn't take effect until I published. In "preview" or "private" the default CSS applied, apparently.
  #4  
Old Aug 15, 2009, 01:37 PM
jankph
 
93 posts · Jul 2009
ATA 3.6.4 and WP 3.1
Overriding table CSS - styling table cells

Is it possible to expand on this? E.g. styling individual cells within the selected table, as in

Code:
table#table-3 td#td-1 {
font-color:#666666;
}
I tried the above, but I cannot make it work
  #5  
Old Aug 16, 2009, 04:46 AM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
If the table TD cells don't have this class td-1 then it won't work. If you're creating the table yourself you could add the class

<table>
<tr>
<td class="td-1">...</td>
<td class="td-2">...</td>
<td class="td-3">...</td>
</tr>
</table>

CSS Insert

td.td-1 {
color:#666666;
}
td.td-2 {
color:#777777;
}
td.td-3 {
color:#888888;
}

Also, it's color, not font-color
  #6  
Old Aug 16, 2009, 01:09 PM
jankph
 
93 posts · Jul 2009
ATA 3.6.4 and WP 3.1
Thanks. It works.

I'm still a CSS novice, and I couldn't see the difference between id (for the table) and class (for the cell), let alone the color thing. Better read up on that subject, I guess.
  #7  
Old Aug 16, 2009, 01:35 PM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
A ID should only appear once on a page. A class can appear multiple times, on multiple, even different elements: <div class="myclass"><span class="myclass">

I suggest to give elements both an ID and a class. That way you can "group style" all elements with the same class, and then, if required give each element an additional, individual style through its ID.

HTML:
<div id="myid" class="myclass">...</div><div id="otherid" class="myclass">...</div><div id="thirdid" class="myclass">...</div>

CSS:
div.myclass { width: 300px }
div#myid { background: red }
div#otherid { background: green }
div#thirdid { background: blue }

All 3 DIV#s will be 300 pixels wide, but each one has a different background color.

An ID has higher priority than a class:

HTML:
<table id="myid" class="myclass">

CSS:
table#myid { background: green }
table.myclass { background: red }

The table background will be green even though the red color was applied after the green color, and due to the CSS rule "later rule takes precedence over earlier rule" it should be red. But the table was already given the color green through its ID, and the class cannot overwrite the ID.

In CSS, ID's are referenced with a hash sign, classes with a dot

selector.classname { property: value; property2: value2 }
selector#idname { property: value; property2: value2 }

The selector (a HTML tag such as table, td, div, span, hr, p, a, ...) can be abandoned but should not (in my opinion) to avoid possible conflicts and unexpected results:

.classname { property: value; property2: value2 }
#idname { property: value; property2: value2 }

... unless it is desired to style multiple elements with the same classname. Then it can make sense to leave out the selector name (as shown above) for the sake of shorter code

It is also possible to apply CSS without ID's or classes, with just the selector. This is a shotgun approach as it will be applied to all matches on the given page:

p { property: value; property2: value2 }

... styles all paragraphs on the page.
  #8  
Old Nov 22, 2011, 04:08 PM
JaneFancher
 
16 posts · Nov 2011
Is there just a way to get rid of the theme's default handling of tables? I use tables a lot in a variety of different ways and it's extremely disconcerting to have code I've used for twenty years have no effect on the site.


Thanks in advance.
  #9  
Old Nov 22, 2011, 04:52 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Go to the table option and blank things out
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #10  
Old Dec 26, 2011, 05:22 PM
adwindham
 
7 posts · Oct 2010
Where should the CSS that overrides the table settings from the theme go? In the css.php? Which part?
  #11  
Old Dec 26, 2011, 05:45 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
You never have to edit CSS.php, just put any overrides in ato->add HTML/CSS inserts->CSS inserts and then they become a theme option
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #12  
Old Apr 9, 2015, 03:19 PM
ehspina
 
4 posts · Jan 2015
I've set my default table background color to #ffffe0 in Style Tables.
I want to set a specific table background color to #ffffff.

I added this id to CSS Inserts:
#whitebackground {
background: #ffffff;
}

and used this code for the table of interest:
<table id="whitebackground" border="0" width="800" cellspacing="0" cellpadding="3">

The table background color does not change, so apparently it's still getting it's instructions from the default table settings.

Here's the page of interest:
http://energycenterclearing.org/escaping-the-matrix2/

I'm using atahualpa 3.7.22 and wordpress 4.1.1.

Please tell me what I'm overlooking.
  #13  
Old Apr 9, 2015, 03:26 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
It's working perfectly well - use a code examiner - like FireBug in FireFox - and examine the table. You will see the <table...> is getting a white background assigned to it.

But what other elements might be getting a background color assigned to then??? (Remember, elements stack on each other like peices of paper.)
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #14  
Old Apr 11, 2015, 08:18 PM
ehspina
 
4 posts · Jan 2015
I checked in Firefox, IE, and Chrome and the key table in each browser still displays in the default table background color of #ffffe0 vs. my specified color of #ffffff.

The source code shows:

<style type="text/css"> ...
table#whitebackground{background:#ffffff}table.whi tebackground{background:#ffffff}</style>

And my table shows:

<table id="whitebackground" class="whitebackground" border="0" width="800" cellspacing="0" cellpadding="3">

http://energycenterclearing.org/escaping-the-matrix2/

Please tell me what's wrong...
  #15  
Old Apr 12, 2015, 04:27 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
what other elements of the table might be getting a background color assigned to them???
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
  #16  
Old Apr 12, 2015, 10:39 AM
ehspina
 
4 posts · Jan 2015
I'm a relative neophyte when it comes to CSS, so please forgive me if I don't understand your question of what other elements might be getting a background color assigned.

I tried to assign each <td> the same id="whitebackground" but again, even though the source code shows it being picked up, the default background color comes through.
  #17  
Old Apr 12, 2015, 03:50 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Use the Firebug extension for Firebug and use the inspector icon to look at your source and see the CSS applied. Start at <table..>. In the code section, click on each child element of the table element and look at the CSS being applied.

You will notice when you click on the element in the source, the area it addresses will change color on the page. This will help you out.

If you are going to be making changes to a site beyond the standard options the theme gives you, you have to learn CSS. Here is a good CSS beginner toutorial to start with http://htmldog.com/guides/css/

btw - every css ID on a page should be unique, So if you have <table id="whitebackground'...> you shouldn't use that id on any other element on the page. Classes can be used in multiple places so you could have <table class="whitebackground"...>...<div class="whitebackground">....<p class="whitebackground"> etc etc
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Last edited by juggledad; Apr 13, 2015 at 06:38 AM.
  #18  
Old Apr 13, 2015, 01:19 PM
ehspina
 
4 posts · Jan 2015
I don't know why this this was necessary, but I assigned the whitebackground id to a div element that surrounded the table and now the table background is white.

In my understanding, having the whitebackground id assigned to the table and every td of the table should have made the table background white. For some reason, that was not sufficient.

http://energycenterclearing.org/escaping-the-matrix/

If this is a bug, you may want to fix it, but since I have the result I wanted, you need not spend any more time on it.

Thank you for your help.
  #19  
Old Apr 13, 2015, 02:34 PM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Actually, had you looked and paid attention, you would have seen that there was a 'background-color: #ffffff;' being assigned to the <td>'s (table cells)

Now table cells sit on top (and cover) table rows and table rows sit on top (and cover) the table so setting the background color of the table to anything just gets hidden by the color of the table cells.

and yes there is a theme option (Table Body Cells) that handles the table cells, so there is no bug.

p.s. as I said already, id's should be unique - you should never have two elements that use the same ID.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support

Last edited by juggledad; Apr 13, 2015 at 02:37 PM.

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] how to override Atahualpa default 404's? gjt Atahualpa 3 Wordpress theme 11 Dec 10, 2012 06:37 PM
[SOLVED] Problem with table styling Edu_Sanzio Atahualpa 3 Wordpress theme 3 Jul 9, 2009 05:22 AM
Big gap before my table renders shilldiy Atahualpa 3 Wordpress theme 4 Apr 14, 2009 02:40 AM
How to override CSS in widget "Text" ?? joe hark Sidebars & Widgets 2 Mar 1, 2009 10:43 PM
Editing the table style and in the posts kirinafa Atahualpa 3 Wordpress theme 1 Mar 1, 2009 03:54 PM


All times are GMT -6. The time now is 03:38 PM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.