View Single Post
  #1  
Old 12-29-2008, 08:22 PM
 
jholley jholley is offline
 

Advanced Member
  
Join Date: Jan 2007
Posts: 66
 

Default css optimization

I am trying to optimize some of the css in our 4.2 installation.
Unfortunately I am somehow confusing myself on the best way to do this.

Here is an example of what I am trying to change.

.printable #header .tabs {
display: none;
}
.printable #header .line2 {
display: none;
}
.printable #header .printable {
display: none;
}

Will this work the same way if I change it to this:


.printable #header .tabs, .line2, .printable {
display: none;
}

I obviously don't want to cause a bunch of problems.

Thanks in advance for any help.
__________________
Joe Holley
4.2
Reply With Quote