In the default month view, the style settings for fields ("Customize field HTML" etc.) don't seem to be applied to multi day events, but only to single day ones. Maybe I just overlooked some setting for this, in this case please tell me where I can change this.

Comments

Harmageddon’s picture

Can anybody confirm or fix this?

Anonymous’s picture

This is a real thorn in my side too! Two resources that helped me:

Drupal 7 Views Module Tutorial 5 of 10: Theming Views
http://www.youtube.com/watch?v=1Cfc11_sb5M

Tutorial - How to Style An Event Calendar in Drupal 7Tutorial - How to Style An Event Calendar in Drupal 7
http://www.cmsquickstart.com/blog/style-event-calendar-drupal-7

silurius’s picture

Has anyone found a workaround or fix for this?

bartmann’s picture

The output isn't getting wrapped in the field/label wrappers - so this is a bug. A workaround is to rewrite the output and add your tags there.

So go to the field you need the styling on and go to the 'rewrite results' option and add your tag and then the replacement in the Text box - for example:
<h3>[field_name]</h3>

Works pretty well and I hope that is what you are looking for...

silurius’s picture

Hi Bartmann. Yes, I saw this workaround and it's helpful (thanks) but it's not perfect. The style settings feature replaces spaces in token replacements with hyphens and the rewrite feature preserves the spaces. And of course in CSS a space between elements is interpreted as a division between two elements.

So for a field that has more than one value (such as multiple taxonomy terms), the style feature would render <div class="[field_term"><p>[field_title]</p></div> as <div class="Green-Apples-Ruby-Grapefruit"><p>Title field text</p></div>.

Whereas the rewrite feature would render it as either <div class="Green Apples, Ruby Grapefruit"><p>Title field text</p></div> or (if you use a hyphen separator instead) as <div class="Green Apples-Ruby Grapefruit"><p>Title field text</p></div>. The comma and the hyphen, in this case, can become a problem in CSS for different reasons.

apaderno’s picture

Version: 7.x-3.4 » 7.x-3.x-dev
Issue summary: View changes
Neslee Canil Pinto’s picture

Status: Active » Closed (outdated)

Hi, there will be no more future development for 7.x branch. If you see this issue in 8.x, feel free to file an issue. Close this as Outdated.