I modified the icons from the default since the original one's aren't as legible as I'd like... now I'd like to modify the color of the text in the toolbar - the blue on black doesn't work for me (and my users) and I'd like to change the text color to white on black.
Any ideas on what file to modify? I've attached a screen shot of the toolbar in question...
That color is coming from your site template, not DT Register. Look in your template.css and search for "toolbar". You'll find various styling that is being applied there. Thanks.
dthadmin wrote: That color is coming from your site template, not DT Register. Look in your template.css and search for "toolbar". You'll find various styling that is being applied there. Thanks.
I checked my template.css file and I don't have any "toolbar" text in it... perhaps I'm looking in the wrong place - this is the location I'm looking in:
Is the ja_purity template the one you are using? That would determine if you are looking in the right place or not. That default template does not have styling applied to the toolbar.
You can also add a background color for the toolbar in DT Register's CSS. There is styling for the toolbar there, but no background color is given... so that's coming from elsewhere. You should be able to override whatever else though:
/components/com_dtregister/assets/css/main.css
Look for this:
table.toolbar a {
Inside of the brackets on this item, add something like this:
background: #ffffff;
That will give a white background. Change the color as desired.
dthadmin wrote: Is the ja_purity template the one you are using? That would determine if you are looking in the right place or not. That default template does not have styling applied to the toolbar.
Yes, ja_purity is our template. That explains why I couldn't find anything. I'll make the changes you outlined to the main.css and hopefully that will help.
dthadmin wrote: Is the ja_purity template the one you are using? That would determine if you are looking in the right place or not. That default template does not have styling applied to the toolbar.
You can also add a background color for the toolbar in DT Register's CSS. There is styling for the toolbar there, but no background color is given... so that's coming from elsewhere. You should be able to override whatever else though:
/components/com_dtregister/assets/css/main.css
Look for this:
table.toolbar a {
Inside of the brackets on this item, add something like this:
background: #ffffff;
That will give a white background. Change the color as desired.
Making this change did the trick! The toolbar is totally legible now and much easier on the eyes... see below.