Closed (works as designed)
Project:
Zero Point
Version:
6.x-1.9
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
4 Mar 2010 at 23:38 UTC
Updated:
1 Oct 2015 at 00:35 UTC
Jump to comment: Most recent
Comments
Comment #1
florian commentedYou are right. I forgot to cut that line. Just put your custom css in custom-style.css and you will be fine.
Comment #2
alvinlb commentedHey Florian,
Nice theme!
When I make a change in cutom-style.css, for example a block icon, its not appearing on my page. Any ideas? I've cleared Drupal and IE cache.
Heres how the .css looks (maybe I've overlooked something!)
/*******************************/
/* UPDATE ICONS FOR NEW BLOCKS */
/*******************************/
/* where XXX is the block number */
/*
block-block-1 .block-icon {
background: transparent url(../images/icons/blocks/icon_apps.png) no-repeat;
}
*/
Comment #3
florian commentedIt should work if you look at your block number and change the script accordingly. For example, if your new block is the third, the script will become:
Pay attention to the image path :)
I always prefer to put everything extra to the _custom folder. So, if I put an image in a folder named images under the _custom folder, the css will become:
Comment #4
ricabrantes commentedHey Florian, Thanks for Nice theme!
I have the same problem..
Please Help
Comment #5
maddentim commented@ricabrantes and @alvinlb - isn't your block-block-1 (or -3) an ID? In that case, you must begin with # like this:
Comment #6
eodonnell commentedI was having the same problems - when you create a new block, the theme wasn't adding
<div class="block-icon pngfix"></div>If you add this to your block code before your content it works.
Comment #7
florian commentedComment #8
florian commented