News:

Dear forum visitors, if the support forum is not available, please try again a few minutes later. Thanks!

Main Menu
Support-Forum

How to change the JDTABLE background to transparent...no css...

Started by kally999, 14.11.2014 17:07:21

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

kally999

I would like to change the JDTABLE to match more with my website. Some changes I could find with Firebug and I could change the css file... but for the jdtable there is no css file, that seems to be a style element. In my case I would like to change the background to transparent. This is what I found about the table : <table class="jdtable" width="100%" cellspacing="0" cellpadding="0" border="0" style="border-style: solid; border-width: thin; border-color: #CECECE; padding: 5px; background-color: #efefef;">

How can I make the background transparent?

Database Version    5.5.40-36.1-log
Database Collation    utf8_general_ci
PHP Version    5.3.29
Web Server    Apache
WebServer to PHP Interface    cgi-fcgi
Joomla! Version    Joomla! 3.3.6 Stable [ Ember ] 01-October-2014 02:00 GMT



[gelöscht durch Administrator]
  •  

ColinM

Hi
I am a little bit confused as the html generating the table is <table class="jdtable" width="100%" border="0" cellpadding="10" cellspacing="5"> and the entry in
the .jdtable in jdownloads_fe.css is
.jdtable {
margin: 10px 0px;

}


On my test site the template is one of the standard Joomla! site ones. The table background is set in the template as
table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0px; }


If you PM me your website and how to get to the download you showe I will take a look to see if I can make any sugestion.  I would expect you might need to include  such as
table {
    background-color: transparent !important;
    }


Colin
Incidentally the future intention is to use less 'inline' styling and more css classes.
Colin M
  •