Walt, Thanks for the response. This is making me crazy. Seems like this should be an easy thing to do.
I have tried your suggestion, but I am not totally clear on where in the admin.py It is just not loading up the new media class. Am I supposed to add the resize class as a separate class like this: #.... class ResizeFilterAdmin(admin.ModelAdmin): class Media: css = { 'all':('bisite.css',) } class ProfileAdmin(admin.ModelAdmin): search_fields = ('profile_name',) ordering = ('profile_name',) filter_horizontal = ('profile_test',) #... or add it into the admin that uses the filter_horizontal like this: class ProfileAdmin(admin.ModelAdmin): search_fields = ('profile_name',) ordering = ('profile_name',) filter_horizontal = ('profile_test',) class ResizeFilterAdmin(admin.ModelAdmin): class Media: css = { 'all':('bisite.css',) } Also, the relative path to the css file? What is that relative to? My admin media so it goes in the same directory as the other admin css files, or relative to my application directory. I appologize for the basic questions. I am just having a hard time grasping the admin modification stuff. On Mar 23, 9:22 am, Walt <tufelkin...@gmail.com> wrote: > You'll need add a stylesheet Media class to your admin class: > > class ResizeFilterAdmin(admin.ModelAdmin): > # .... > > class Media: > css = { 'all': ('/relative/path/to/supplemental.css'), } > > Then, in that CSS file you'll need to specify the width of your > element: > > /* by class */ > .filtered { > width: 350px; > > } > > /* or by object id */ > #id_yourfieldname_from { > width: 350px; > > } > > #id_yourfieldname_to { > width: 350px; > > } > > This should work. :-) > > Walt -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.