Posted by koffer on February 8, 2013 at 6:11pm
1 follower
| Project: | Omega |
| Version: | 7.x-3.1 |
| Component: | Documentation |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Issue Summary
Im creating a css for print. Already many of the css is working, but I have a problem, the site work with a javascript animation logotype and i want to show a iamge onlye version of logotype to print (the block with animation actually dont print) my solution is create a block with a image (with logotype) and in css tell:
print.css
.block-13 {
display: block;
width:220px;
height:220px;
position: relative;
} and in global.css
.block-13 {
display:none;
}Part of the code work, the block dont show in screen, but in printing dont appear the block (and the logotype)
some solution? any idea?