0
Hi,
I am having trouble with CSS with my current Theme.
Please see attached image.
Many thanks.
I am having trouble with CSS with my current Theme.
Please see attached image.
Many thanks.
Responses (17)
-
Accepted Answer
-
Accepted Answer
0These are the changes I've done:
components/com_invoices/views/invoices/tmpl/default.php line 116
<h1><?php echo JText::_('PAYMENTS_TITLE'); ?></h1>
components/com_invoices/assets/styles.css end of file
/* ----------------- CUSTOM ----------------- */
td {
border-bottom: 0 !important;
}
.paymenthover {
background-color: transparent !important;
}
.table tbody tr.success td {
background-color: transparent !important;
}
.table tbody tr.success:hover td, .table tbody tr.success.paymenthover td {
background-color: transparent !important;
}
.table tbody tr.warning td {
background-color: transparent !important;
}
.table tbody tr.warning:hover td, .table tbody tr.warning.paymenthover td {
background-color: transparent !important;
}
.table tbody tr.error td {
background-color: transparent !important;
}
.table tbody tr.error:hover td, .table tbody tr.error.paymenthover td {
background-color: transparent !important;
}
tr.footfinances td {
background-color: transparent !important;
}
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0Hi again,
In the screenshot attached to your question the invoices and the payments tables had a light background that made the text unreadable. So what I did was to make all the tackgrounds transparent as you have a light font color and a dark background.
If I set a light background for the tables, you probably won't be able to read their content right? I'm not sure to understand what you demand.
Thank you,
Joan -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0Done!
These are all the changes. Keep them in case you update the component.
components/com_invoices/views/invoices/tmpl/default.php line 116:
<h1 class="paymentsTitle"><?php echo JText::_('PAYMENTS_TITLE'); ?></h1>
components/com_invoices/assets/styles.css end of file:
/* ----------------- CUSTOM ----------------- */
.items_table_responsive td {
color: #333;
}
tr td {
background-color: #f5f5f5;
padding: 5px;
}
td.statussentence {
text-align: right;
}
.pagination.pagination-toolbar.clearfix {
margin-top: 15px;
}
.paymentsTitle {
margin-top: 0;
}
Regards,
Joan -
Accepted Answer
0Joan,
thank you so much - I love it.
The product is great thank you.
Just a couple of questions:
1. is it possible to automatically refresh the page quicker as it seems to take a loing time and I end up manually doing it
2. when you have the preview in a window on its own, when the refresh happens it closes the window.
Mark -
Accepted Answer
0Hello Mark,
I'm not sure to understand your first point. Which page you want to refresh? The administrator main view or the front-end one? I don't know what you mean about that you end up manually doing it.
About the second point, this is a normal behavior because the invoice is opened in a pop up window. The page is the same.
Joan -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
Your Reply

Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »