Hi
How would you use two content types in the same view

For example

1 to 10 article
content type advert
11 to 20 article
content type advert
21 to 30 article

Many thanks for your help
Best Regards
Charles

Comments

yelvington’s picture

Assemble a display of multiple components by using Views Attachments. Google for video tutorials.

kryptum’s picture

Please read rules, don't use capitals in titles: https://drupal.org/forum-posting#punctuation
Thanks

charlie charles’s picture

Sorry, I didn't know that.
Why don't we just change the css for titles to
{text-transform:lowercase;}

jaypan’s picture

Because then no one could use any capital letters in titles, which would just look weird.

Contact me to contract me for D7 -> D10/11 migrations.

charlie charles’s picture

I agree would just look weird but there is a css fix for that.

http://stackoverflow.com/questions/5577364/make-the-first-character-uppe...

a.m_title {
text-transform: capitalize;
}
If your links can contain multiple words and you only want the first letter of the first word to be uppercase, use :first-letter with a different transform instead (although it doesn't really matter). Note that in order for :first-letter to work your a elements need to display as blocks:

a.m_title {
display: block;
}

a.m_title:first-letter {
text-transform: uppercase;
}

It's only few lines of css

vm’s picture

Except that there isn't a CSS suggestion that can work in all cases such as acronyms (ie: AJAX) that should be comprised of all caps or words that begin with a lowercase followed by an uppercase letter ie: jQuery.

IMO attempts at covering up such things with CSS (or other) isn't a fix at all. user enlightenment via community rules can generate better etiquette on a specific site and across the entirety of web.

It would illustrate your understanding and goodwill if you were to edit the opening post and adjust the node title upon your next read.

kryptum’s picture

user enlightenment via community rules can generate better etiquette on a specific site and across the entirety of web.

Indeed. ; )

jaypan’s picture

To add to VM's comments, it's also not cross-browser compatible, as some browsers do not support this CSS property.

Contact me to contract me for D7 -> D10/11 migrations.

charlie charles’s picture

I'm happy to change the text.
I only did it in caps because I was someone else posted in all caps

Be honest with you I think if there was option do this 1st caps css.
I'm not 100% sure drupal.org would do it.

Drupal.org seem focused on bulk upgrades.
Companies such as facebook, google, and many more
focus on lean method upgrades.

Which Eric Ries "The Lean Startup" talks about

https://www.youtube.com/watch?v=fEvKo90qBns

For example on this page
"Donate Now"

https://drupal.org/project/drupal

Has anyone actually tested this button?
i.e which would increase conversion rate "green" or "blue" button?

I 've seen web experiments where changing the color can increase
conversion by 20%!

Maybe you might have idea's how to improve support features or ways to save you time?
You only know if your ideas will work when you test them.

I'm just try share some ideas to help community.

Because you guys are always so helpful
and I'm very grateful :)

vm’s picture

I only did it in caps because I was someone else posted in all caps

Volunteer forum moderators catch as many as they can. However, your reasoning reminds me of something my mother used to ask me when I was a teenager and would try to utilize similar reasoning. Her response would be "If your friends jumped off a bridge or played in traffic would you do that also?"

Be honest with you I think if there was option do this 1st caps css.
I'm not 100% sure drupal.org would do it.

It could be done if it made sense. As the examples above have shown you, it doesn't make sense in all situations. Thus a blanket CSS solution isn't possible.

As far as button colors and such that is beyond the scope of what forum moderators work on. You would need to file an issue in the webmasters issue queue.

jaypan’s picture

As far as button colors and such that is beyond the scope of what forum moderators work on. You would need to file an issue in the webmasters issue queue.

I think in this case, it would be the infrastructure issue queue.

Contact me to contract me for D7 -> D10/11 migrations.

vm’s picture

agreed. The infrastructure queue under the drupal.org theme component.