About Editing Camptix Registration Table.
If anyone visits this question here is what I did to blend the registration table in with the page on my site.
The description bar takes it’s design from the current themes style.css
In the theme I am using (graphene) I found
——————————————-
table th {
background: #eee;
background: -webkit-linear-gradient(#f6f6f6,#eee);
background: -moz-linear-gradient(#f6f6f6,#eee);
background: -o-linear-gradient(#f6f6f6,#eee);
background: linear-gradient(#FFB200,#FF9700);
padding: 10px 5px;
}
——————————————————
In (table th) styling I changed
background: linear-gradient to –(
and that did the trick.
Now for the “Register” button.
Open camptix.php and on or around line 4587 you should find:
value=”<?php esc_attr_e( ‘Register &rarr’, ‘camptix’ ); ?>
Change the above to:
value=”<?php esc_attr_e( ‘Words You Want →’, ‘camptix’ ); ?>”
I hope this helps anyone visiting the page
***WARNING******************************************************
Changes to the CSS file may be removed during a theme update
Changes to camptix.php may also be deleted during camptix update.
So keep copies of the changes so you can easily redo them.