<43E19047.5000404@pingv.com>
Message-ID: <025401c62890$27e81280$1102a8c0@OFFICEBEAST>
Hi,
I call up a blog entry from a snippet and it doesn't get formatted with tags. When I visit it the regular way it doesget formatted. Both methods seem to go through the same node.tpl.php file - it seems that the $content var that is passed to that should already have the formatting.
this is the snippet code I am using:
-----------------------------------------------------8<---------------------------------------
function _myfunctions_latest_blog_entries($listlength, $userid) {
$sql = "SELECT * FROM {node} n, users WHERE n.type = 'blog' AND n.uid = $userid AND n.status = 1 AND n.uid = users.uid ORDER BY n.created DESC LIMIT $listlength";
$result = db_query($sql);
while ($anode = db_fetch_object($result)) {
$output .= theme('node', $anode, $teaser = FALSE, $page = FALSE);
}
return $output;
}
-----------------------------------------------------8<---------------------------------------
I guess the problem is in this line?:
$output .= theme('node', $anode, $teaser = FALSE, $page = FALSE);
What should I call instead?
Thanks for any help in understanding this.
Josh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/themes/attachments/20060203/6cc3dd3f/attachment.htm
From josh at theyrule.net Fri Feb 3 08:10:23 2006
From: josh at theyrule.net (josh on)
Date: Fri Feb 3 08:10:26 2006
Subject: [themes] formatting text
References: <01bc01c62393$b7c16f70$1102a8c0@OFFICEBEAST><714599b50601271710t7ed3b448ha32498bb1fe62409@mail.gmail.com>
<02e101c623b7$c39b73d0$1102a8c0@OFFICEBEAST>
<43E25787.6060406@rtmark.com>
<01a801c62830$043548e0$1102a8c0@OFFICEBEAST>
<43E26C90.80303@hampshire.edu>
<005b01c62846$3f5eff90$1102a8c0@OFFICEBEAST>
<43E289D8.2000303@hampshire.edu>
<006d01c6284b$012d92e0$1102a8c0@OFFICEBEAST>
<43E28DA9.4030802@hampshire.edu>
<00c401c6285e$72f2a7e0$1102a8c0@OFFICEBEAST>
<43E2DC50.4050906@hampshire.edu>
Message-ID: <029401c62899$48c33da0$1102a8c0@OFFICEBEAST>
I fixed the formatting problem... but I suspect it is a bad hack :(
function _myfunctions_latest_blog_entries($listlength, $userid) {
$sql = "SELECT * FROM {node} n, users WHERE n.type = 'blog' AND n.uid = $userid AND n.status = 1
AND n.uid = users.uid ORDER BY n.created DESC LIMIT $listlength";
$result = db_query($sql);
while ($anode = db_fetch_object($result)) {
$anode->body = _filter_autop($anode->body);
$output .= theme('node', $anode, $teaser = FALSE, $page = FALSE);
}
return $output;
}
It wasn't calling the filter.module - so I forced it to [ $anode->body =
_filter_autop($anode->body); ] before it went to theme it... is this wrong?
Josh
From josh at theyrule.net Fri Feb 3 19:49:18 2006
From: josh at theyrule.net (josh on)
Date: Fri Feb 3 19:49:22 2006
Subject: [themes] node footer $links
References: <01bc01c62393$b7c16f70$1102a8c0@OFFICEBEAST><714599b50601271710t7ed3b448ha32498bb1fe62409@mail.gmail.com><02e101c623b7$c39b73d0$1102a8c0@OFFICEBEAST><43E25787.6060406@rtmark.com><01a801c62830$043548e0$1102a8c0@OFFICEBEAST><43E26C90.80303@hampshire.edu><005b01c62846$3f5eff90$1102a8c0@OFFICEBEAST><43E289D8.2000303@hampshire.edu><006d01c6284b$012d92e0$1102a8c0@OFFICEBEAST><43E28DA9.4030802@hampshire.edu><00c401c6285e$72f2a7e0$1102a8c0@OFFICEBEAST><43E2DC50.4050906@hampshire.edu>
<029401c62899$48c33da0$1102a8c0@OFFICEBEAST>
Message-ID: <004401c628fa$ec2cc590$1102a8c0@OFFICEBEAST>
Hi,
I want to theme a the links on the bottom of blog entries - so the when it says "read more", and
"[user]'s blog" they are wrapped in a span or div with a class that puts in a bg-image and rollover
info.
I can't work out out where the $links array is constructed... is it deep inside Drupal? I tried
tracing it back a few steps - but am worried that this might not be possible - because the further
back you go the more generic the function seems to be - and determing whether something is a link in
a node footer might not be possible.
Thanks
Josh
From rowan at stasis.org Fri Feb 3 20:11:34 2006
From: rowan at stasis.org (Rowan Kerr)
Date: Fri Feb 3 20:10:02 2006
Subject: [themes] node footer $links
In-Reply-To: <004401c628fa$ec2cc590$1102a8c0@OFFICEBEAST>
References: <01bc01c62393$b7c16f70$1102a8c0@OFFICEBEAST><714599b50601271710t7ed3b448ha32498bb1fe62409@mail.gmail.com><02e101c623b7$c39b73d0$1102a8c0@OFFICEBEAST><43E25787.6060406@rtmark.com><01a801c62830$043548e0$1102a8c0@OFFICEBEAST><43E26C90.80303@hampshire.edu><005b01c62846$3f5eff90$1102a8c0@OFFICEBEAST><43E289D8.2000303@hampshire.edu><006d01c6284b$012d92e0$1102a8c0@OFFICEBEAST><43E28DA9.4030802@hampshire.edu><00c401c6285e$72f2a7e0$1102a8c0@OFFICEBEAST><43E2DC50.4050906@hampshire.edu> <029401c62899$48c33da0$1102a8c0@OFFICEBEAST>
<004401c628fa$ec2cc590$1102a8c0@OFFICEBEAST>
Message-ID: <43E3B8F6.3090208@stasis.org>
josh on wrote:
> I want to theme a the links on the bottom of blog entries
In node.tpl.php
> I can't work out out where the $links array is constructed
hook_link()
That is the hook that Drupal modules use to construct
the $node->links array.
From info at ustilago.org Fri Feb 3 20:14:57 2006
From: info at ustilago.org (Heine Deelstra)
Date: Fri Feb 3 20:23:38 2006
Subject: [themes] node footer $links
In-Reply-To: <004401c628fa$ec2cc590$1102a8c0@OFFICEBEAST>
References: <01bc01c62393$b7c16f70$1102a8c0@OFFICEBEAST>
<714599b50601271710t7ed3b448ha32498bb1fe62409@mail.gmail.com>
<02e101c623b7$c39b73d0$1102a8c0@OFFICEBEAST>
<43E25787.6060406@rtmark.com>
<01a801c62830$043548e0$1102a8c0@OFFICEBEAST>
<43E26C90.80303@hampshire.edu>
<005b01c62846$3f5eff90$1102a8c0@OFFICEBEAST>
<43E289D8.2000303@hampshire.edu>
<006d01c6284b$012d92e0$1102a8c0@OFFICEBEAST>
<43E28DA9.4030802@hampshire.edu>
<00c401c6285e$72f2a7e0$1102a8c0@OFFICEBEAST>
<43E2DC50.4050906@hampshire.edu>
<029401c62899$48c33da0$1102a8c0@OFFICEBEAST>
<004401c628fa$ec2cc590$1102a8c0@OFFICEBEAST>
Message-ID:
On Fri, 03 Feb 2006 20:49:18 +0100, josh on wrote:
> I want to theme a the links on the bottom of blog entries - so the when
> it says "read more", and
> "[user]'s blog" they are wrapped in a span or div with a class that puts
> in a bg-image and rollover
> info.
> I can't work out out where the $links array is constructed... is it deep
> inside Drupal? I tried
> tracing it back a few steps - but am worried that this might not be
> possible - because the further
> back you go the more generic the function seems to be - and determing
> whether something is a link in
> a node footer might not be possible.
$node->links is an array. You can foreach() over the array and output each
link with a span or div. If you want to do a little more magic, perhaps
you can use http://drupal.org/node/21538#comment-81773.
--
http://pctips.ustilago.org
From speck at blkmtn.org Sat Feb 4 03:06:55 2006
From: speck at blkmtn.org (Steven Peck)
Date: Sat Feb 4 03:07:47 2006
Subject: [themes] RE: [infrastructure] loads of new themes: lots of thoughts
:)
Message-ID:
That is btw a really nice theme. What do you need edited?
________________________________
From: infrastructure-bounces@drupal.org on behalf of Ken Collins
Sent: Thu 2/2/2006 6:07 PM
To: A list for Drupal infrastructure maintainers (eg. drupal.org, CVS,mailing lists)
Cc: A list for documentation writers; themes@drupal.org
Subject: Re: [infrastructure] loads of new themes: lots of thoughts :)
Ber,
I'd like to help any if I could. I've been using Drupal for almost a
year now and I'm just getting my feet wet in the "giving back" and
"pitching in" aspect. Earlier this week I just did my CVS upload for
my theme contribution http://drupal.org/node/43376 and once I get it
tagged for 4.7. I'd like to see it go into some more visable areas.
Right now I'm having a problem where I cannot edit my project page
because I do not have full HTML privileges. Would I need this to help
with any of the items your asking about?
- Ken
On Feb 2, 2006, at 6:17 PM, B?r Kessels wrote:
> Hello.
>
> I added a bunch of new themes, and it is looking very well :) Thank
> you for
> the nice new additions.
>
> However, the site is growing, and needs work. Here is my plan:
> Write twelve (just below the pager) nodes. I am not a fan of
> lipsum, so IMO it
> should just be an intro into Drupal, theming and other information
> like that.
> I also want one page explaining that Garen theme is NOT available.
> Steven and
> I have been getting quite a lot of personal mails about that
> lately. If
> possible we should add one or two small images to one or two nodes.
> Any takers?
>
> I want to show one node/add screen. For that I would like to
> develop a module
> that adds no content. Maybe someone has a nicer idea?
>
> I want to show comments + comment form. The comments could be put
> online, but
> could be queued (and deteleted)
>
> I also like to discuss auto-installation of themes. I do not have
> time to read
> thoroughly trough all the themes. I did check the new ones this
> time, but
> when that is growing this will no longer be possible.
> We could add a crontab that pulls in new 4.6 tagged themes every
> night, but Ie
> am afraid that one CVS committer can abuse that to commit+tag a
> hacked up
> theme and then take over the site the same night.
>
> Ideas are more then welcome. The site is getting busy lately :)
>
> B?r
> --
> | B?r Kessels | webschuur.com | website development |
> | Jabber & Google Talk: ber@jabber.webschuur.com
> | http://bler.webschuur.com | http://www.webschuur.com |
> --
> [ infrastructure | http://lists.drupal.org/listinfo/infrastructure ]
--
[ infrastructure | http://lists.drupal.org/listinfo/infrastructure ]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/themes/attachments/20060204/934a5264/attachment.htm
From ken at metaskills.net Sat Feb 4 14:08:10 2006
From: ken at metaskills.net (Ken Collins)
Date: Sat Feb 4 14:08:11 2006
Subject: [themes] Re: [infrastructure] loads of new themes: lots of thoughts
:)
In-Reply-To:
References:
Message-ID: <213116C6-9EE0-4BC8-B986-F009F7A655A5@metaskills.net>
Thanks. Some time today I'd like to type up a new description. Maybe
I can forward the HTML to someone to edit.
But right now I need to figure out why my CVS tags did not branch
this to 4.7. I had thought that some cron job might have run last
night but it's still tagged as a CVS download in my project page.
Thoughts?
- Ken
On Feb 3, 2006, at 10:06 PM, Steven Peck wrote:
> That is btw a really nice theme. What do you need edited?
>
> From: infrastructure-bounces@drupal.org on behalf of Ken Collins
> Sent: Thu 2/2/2006 6:07 PM
> To: A list for Drupal infrastructure maintainers (eg. drupal.org,
> CVS,mailing lists)
> Cc: A list for documentation writers; themes@drupal.org
> Subject: Re: [infrastructure] loads of new themes: lots of thoughts :)
>
>
> Ber,
>
> I'd like to help any if I could. I've been using Drupal for almost a
> year now and I'm just getting my feet wet in the "giving back" and
> "pitching in" aspect. Earlier this week I just did my CVS upload for
> my theme contribution http://drupal.org/node/43376 and once I get it
> tagged for 4.7. I'd like to see it go into some more visable areas.
>
> Right now I'm having a problem where I cannot edit my project page
> because I do not have full HTML privileges. Would I need this to help
> with any of the items your asking about?
>
> - Ken
>
>
> On Feb 2, 2006, at 6:17 PM, B?r Kessels wrote:
>
> > Hello.
> >
> > I added a bunch of new themes, and it is looking very well :) Thank
> > you for
> > the nice new additions.
> >
> > However, the site is growing, and needs work. Here is my plan:
> > Write twelve (just below the pager) nodes. I am not a fan of
> > lipsum, so IMO it
> > should just be an intro into Drupal, theming and other information
> > like that.
> > I also want one page explaining that Garen theme is NOT available.
> > Steven and
> > I have been getting quite a lot of personal mails about that
> > lately. If
> > possible we should add one or two small images to one or two nodes.
> > Any takers?
> >
> > I want to show one node/add screen. For that I would like to
> > develop a module
> > that adds no content. Maybe someone has a nicer idea?
> >
> > I want to show comments + comment form. The comments could be put
> > online, but
> > could be queued (and deteleted)
> >
> > I also like to discuss auto-installation of themes. I do not have
> > time to read
> > thoroughly trough all the themes. I did check the new ones this
> > time, but
> > when that is growing this will no longer be possible.
> > We could add a crontab that pulls in new 4.6 tagged themes every
> > night, but Ie
> > am afraid that one CVS committer can abuse that to commit+tag a
> > hacked up
> > theme and then take over the site the same night.
> >
> > Ideas are more then welcome. The site is getting busy lately :)
> >
> > B?r
> > --
> > | B?r Kessels | webschuur.com | website development |
> > | Jabber & Google Talk: ber@jabber.webschuur.com
> > | http://bler.webschuur.com | http://www.webschuur.com |
> > --
> > [ infrastructure | http://lists.drupal.org/listinfo/infrastructure ]
>
> --
> [ infrastructure | http://lists.drupal.org/listinfo/infrastructure ]
>
>
> --
> [ infrastructure | http://lists.drupal.org/listinfo/infrastructure ]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/themes/attachments/20060204/1c998a09/attachment.htm
From speck at blkmtn.org Sat Feb 4 17:35:24 2006
From: speck at blkmtn.org (Steven Peck)
Date: Sat Feb 4 17:37:57 2006
Subject: [themes] RE: [infrastructure] loads of new themes: lots of thoughts
:)
Message-ID:
IF you type up a new description forward it to me and I'll update it for you. As to brnaching.... if you see the branch in cvs, then drupal.org should package it bout every 12 hours. If something didn't go right, then I think you will need Dries or Steven look at it. Don't delete your 4.7 branch if you already have it, that would mess up the scripts.
________________________________
From: infrastructure-bounces@drupal.org on behalf of Ken Collins
Sent: Sat 2/4/2006 6:08 AM
To: A list for Drupal infrastructure maintainers (eg. drupal.org, CVS,mailing lists)
Cc: A list for documentation writers; themes@drupal.org
Subject: Re: [infrastructure] loads of new themes: lots of thoughts :)
Thanks. Some time today I'd like to type up a new description. Maybe I can forward the HTML to someone to edit.
But right now I need to figure out why my CVS tags did not branch this to 4.7. I had thought that some cron job might have run last night but it's still tagged as a CVS download in my project page. Thoughts?
- Ken
On Feb 3, 2006, at 10:06 PM, Steven Peck wrote:
That is btw a really nice theme. What do you need edited?
________________________________
From: infrastructure-bounces@drupal.org on behalf of Ken Collins
Sent: Thu 2/2/2006 6:07 PM
To: A list for Drupal infrastructure maintainers (eg. drupal.org, CVS,mailing lists)
Cc: A list for documentation writers; themes@drupal.org
Subject: Re: [infrastructure] loads of new themes: lots of thoughts :)
Ber,
I'd like to help any if I could. I've been using Drupal for almost a
year now and I'm just getting my feet wet in the "giving back" and
"pitching in" aspect. Earlier this week I just did my CVS upload for
my theme contribution http://drupal.org/node/43376 and once I get it
tagged for 4.7. I'd like to see it go into some more visable areas.
Right now I'm having a problem where I cannot edit my project page
because I do not have full HTML privileges. Would I need this to help
with any of the items your asking about?
- Ken
On Feb 2, 2006, at 6:17 PM, B?r Kessels wrote:
> Hello.
>
> I added a bunch of new themes, and it is looking very well :) Thank
> you for
> the nice new additions.
>
> However, the site is growing, and needs work. Here is my plan:
> Write twelve (just below the pager) nodes. I am not a fan of
> lipsum, so IMO it
> should just be an intro into Drupal, theming and other information
> like that.
> I also want one page explaining that Garen theme is NOT available.
> Steven and
> I have been getting quite a lot of personal mails about that
> lately. If
> possible we should add one or two small images to one or two nodes.
> Any takers?
>
> I want to show one node/add screen. For that I would like to
> develop a module
> that adds no content. Maybe someone has a nicer idea?
>
> I want to show comments + comment form. The comments could be put
> online, but
> could be queued (and deteleted)
>
> I also like to discuss auto-installation of themes. I do not have
> time to read
> thoroughly trough all the themes. I did check the new ones this
> time, but
> when that is growing this will no longer be possible.
> We could add a crontab that pulls in new 4.6 tagged themes every
> night, but Ie
> am afraid that one CVS committer can abuse that to commit+tag a
> hacked up
> theme and then take over the site the same night.
>
> Ideas are more then welcome. The site is getting busy lately :)
>
> B?r
> --
> | B?r Kessels | webschuur.com | website development |
> | Jabber & Google Talk: ber@jabber.webschuur.com
> | http://bler.webschuur.com | http://www.webschuur.com |
> --
> [ infrastructure | http://lists.drupal.org/listinfo/infrastructure ]
--
[ infrastructure | http://lists.drupal.org/listinfo/infrastructure ]
--
[ infrastructure | http://lists.drupal.org/listinfo/infrastructure ]
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/themes/attachments/20060204/ae338e65/attachment.htm
From josh at theyrule.net Sun Feb 5 20:22:56 2006
From: josh at theyrule.net (josh on)
Date: Sun Feb 5 20:22:59 2006
Subject: [themes] theming civicrm
References:
Message-ID: <013b01c62a91$f37f2b60$1102a8c0@OFFICEBEAST>
Hi was hoping that when I made a page_civicrm.tpl.php file - that it would them the civicrm pages much like the page_admin.tpl.php themes those pages. Should that have worked? Is there something more that I need to do?
Thanks,
Josh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/themes/attachments/20060205/e3e6227b/attachment.htm
From laura at pingv.com Sun Feb 5 20:25:35 2006
From: laura at pingv.com (Laura Scott)
Date: Sun Feb 5 20:25:45 2006
Subject: [themes] theming civicrm
In-Reply-To: <013b01c62a91$f37f2b60$1102a8c0@OFFICEBEAST>
References:
<013b01c62a91$f37f2b60$1102a8c0@OFFICEBEAST>
Message-ID: <43E65F3F.4060305@pingv.com>
One way I use a lot: Put a conditional up at the top of your default
page. What I have on one site:
etc....
The create a page-crm.tpl.php page template to handle just your CRM pages.
Best,
Laura
josh on wrote:
> Hi was hoping that when I made a page_civicrm.tpl.php file - that it
> would them the civicrm pages much like the page_admin.tpl.php themes
> those pages. Should that have worked? Is there something more that I
> need to do?
>
> Thanks,
>
> Josh
> ------------------------------------------------------------------------
>
> _______________________________________________
> themes mailing list
> themes@drupal.org
> http://lists.drupal.org/mailman/listinfo/themes
>
--
*Laura Scott*, President
pingVision | interactive media design
4450 Arapahoe Avenue, Suite 100
Boulder, CO 80303
303.415.2559
laura@pingv.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/themes/attachments/20060205/97fff883/attachment.htm
From josh at theyrule.net Sun Feb 5 20:48:49 2006
From: josh at theyrule.net (josh on)
Date: Sun Feb 5 20:48:52 2006
Subject: [themes] theming civicrm
References:
<013b01c62a91$f37f2b60$1102a8c0@OFFICEBEAST>
<43E65F3F.4060305@pingv.com>
Message-ID: <015901c62a95$91a6a8b0$1102a8c0@OFFICEBEAST>
Thanks Laura!
That seems like a great solution. I think maybe that should be part of the install deafult. Because my regular theme is fixed width and doesn't work for the CRM pages.
Josh
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/themes/attachments/20060205/a9bf0fb5/attachment.htm
From josh at theyrule.net Sun Feb 5 22:02:10 2006
From: josh at theyrule.net (josh on)
Date: Sun Feb 5 22:02:13 2006
Subject: [themes] theming civicrm
References: <013b01c62a91$f37f2b60$1102a8c0@OFFICEBEAST><43E65F3F.4060305@pingv.com>
<015901c62a95$91a6a8b0$1102a8c0@OFFICEBEAST>
Message-ID: <01a001c62a9f$d07a9920$1102a8c0@OFFICEBEAST>
The thing I liked about the admin layout was that it forces it to be a two column layout.
But I realised that this seems to be the case before it even arrives at template.php (which is where the switch happens - directing it to use page_admin.tpl.php.
My new question is:
Where do the $sidebar_right and $sidebar_left get cleaned up to only contain the admin menu?
Is that a civicpace thing or a drupal wide thing?
In the end I want to get Civicrm to ignore the right menu. I guess I could just hack it in template.php with a conditional:
if ((arg(0) == 'civicrm') && (user_access('access civicrm pages'))) {
$sidebar_right="";
return true;
}
But that seems like a real hackjob!
Josh
-I want to learn to do things properly - so one day I can make stuff that is re-usable by others!
----- Original Message -----
From: josh on
To: A list for theme developers
Sent: Sunday, February 05, 2006 12:48 PM
Subject: Re: [themes] theming civicrm
Thanks Laura!
That seems like a great solution. I think maybe that should be part of the install deafult. Because my regular theme is fixed width and doesn't work for the CRM pages.
Josh
------------------------------------------------------------------------------
_______________________________________________
themes mailing list
themes@drupal.org
http://lists.drupal.org/mailman/listinfo/themes
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/themes/attachments/20060205/345294ab/attachment.htm
From rowan at stasis.org Fri Feb 10 07:41:44 2006
From: rowan at stasis.org (Rowan Kerr)
Date: Fri Feb 10 07:41:47 2006
Subject: [themes] Extra custom theme settings
Message-ID:
According to http://drupaldocs.org/api/head/function/system_theme_settings
I got the impression that defining a _settings() (along
with _features()?) function would allow extra fields to be
inserted on admin/themes/settings/ page but that doesn't
seem to be working for me.
I put _features() and _settings() in template.php but nothing seems to
be happening. I'm probably just overlooking something obvious at the
moment.
What I'd like to do is add an option to allow re-ordering of the
different properties of node and comment through the settings. So that
the site admin could define an order of title, submitted, terms,
content, links... or title, content, submitted, terms, etc without
having to create a new theme or mess with .tpl.php files.
Anyone have suggestions?
From kieran at civicspacelabs.org Sat Feb 11 03:27:38 2006
From: kieran at civicspacelabs.org (Kieran Lal)
Date: Sat Feb 11 03:27:43 2006
Subject: [themes] Magnification of the menu list
Message-ID: <6E002C6B-221D-471E-A9E2-374E7609BE00@civicspacelabs.org>
http://paularmstrongdesigns.com/examples/css/navigation-
magnification.html
Can we do this with the menu block?
Kieran
From ber at webschuur.com Sat Feb 11 10:43:10 2006
From: ber at webschuur.com (=?iso-8859-1?q?B=E8r_Kessels?=)
Date: Sat Feb 11 10:43:26 2006
Subject: [themes] Magnification of the menu list
In-Reply-To: <6E002C6B-221D-471E-A9E2-374E7609BE00@civicspacelabs.org>
References: <6E002C6B-221D-471E-A9E2-374E7609BE00@civicspacelabs.org>
Message-ID: <200602111143.10256.ber@webschuur.com>
Op zaterdag 11 februari 2006 04:27, schreef Kieran Lal:
> Can we do this with the menu block?
Sure. Just add the CSS to your style.css.
li { font-size: 1em; }
li:hover { font-size: 2.5em; }
li:hover + li { font-size: 2em; }
li:hover + li + li { font-size: 1.5em; }
And I sincerely hope you are not suggesting this for core drupal... :) I
think this is probably the most annoying, most distracting, and
nothing-adding CSS trick in ages. Sorry.
B?r
From kieran at civicspacelabs.org Mon Feb 13 02:09:26 2006
From: kieran at civicspacelabs.org (Kieran Lal)
Date: Mon Feb 13 02:09:30 2006
Subject: [themes] Magnification of the menu list
In-Reply-To: <200602111143.10256.ber@webschuur.com>
References: <6E002C6B-221D-471E-A9E2-374E7609BE00@civicspacelabs.org>
<200602111143.10256.ber@webschuur.com>
Message-ID: <3E34893B-4F62-404A-BCCB-3090C3B1335D@civicspacelabs.org>
On Feb 11, 2006, at 2:43 AM, B?r Kessels wrote:
> Op zaterdag 11 februari 2006 04:27, schreef Kieran Lal:
>> Can we do this with the menu block?
>
> Sure. Just add the CSS to your style.css.
>
> li { font-size: 1em; }
> li:hover { font-size: 2.5em; }
> li:hover + li { font-size: 2em; }
> li:hover + li + li { font-size: 1.5em; }
>
> And I sincerely hope you are not suggesting this for core
> drupal... :) I
> think this is probably the most annoying, most distracting, and
> nothing-adding CSS trick in ages. Sorry.
Not for core. But for people who have problem reading small text
tricks like this can help them to read small links.
Kieran
>
> B?r
> _______________________________________________
> themes mailing list
> themes@drupal.org
> http://lists.drupal.org/mailman/listinfo/themes
>
From ber at webschuur.com Mon Feb 13 08:51:14 2006
From: ber at webschuur.com (=?iso-8859-1?q?B=E8r_Kessels?=)
Date: Mon Feb 13 08:51:31 2006
Subject: [themes] Magnification of the menu list
In-Reply-To: <3E34893B-4F62-404A-BCCB-3090C3B1335D@civicspacelabs.org>
References: <6E002C6B-221D-471E-A9E2-374E7609BE00@civicspacelabs.org>
<200602111143.10256.ber@webschuur.com>
<3E34893B-4F62-404A-BCCB-3090C3B1335D@civicspacelabs.org>
Message-ID: <200602130951.14974.ber@webschuur.com>
Hi,
Op maandag 13 februari 2006 03:09, schreef Kieran Lal:
> Not for core. ?But for people who have problem reading small text ?
I think this is a personal thing: but my opinion is, that if you need such
tricks to make your site readable, your design is broken.
If you start considering such hover-magnify things, or if you find that you
need the
[^][A][/\] buttons, you should best get back to the basics and re-think
those.
Accessibility is baked into the very foundations of your site. It sits not in
the tricks you use.
:)
B?r
From erik at eeeb.com Mon Feb 13 12:32:46 2006
From: erik at eeeb.com (Erik B. Ebright)
Date: Mon Feb 13 12:32:51 2006
Subject: [themes] fancy theme mod help
Message-ID: <43F07C6E.9060207@eeeb.com>
Hey Plp,
1st big thanks for helping me out with the drupal theme Q&A. I have
used the fancy theme for my site http://rootsnetwork.org, and thought I
would share it with you. Also there is one super quick question that I
have, and that is how can I remove the white space in the block title
tab area. Really I just want to make it match my bkgnd color, and not
white. Any help where I would change that in the block.css file? Here is
quick link to the file for your personal reference
http://www.rootsnetwork.org/v1/themes/fancy/blocks.css
or maybe it's in
http://www.rootsnetwork.org/v1/themes/fancy/style.css
Thanks SO MUCH!
-Erik E>
From blogdiva at culturekitchen.com Mon Feb 13 14:46:33 2006
From: blogdiva at culturekitchen.com (blogdiva@culturekitchen.com)
Date: Mon Feb 13 14:46:42 2006
Subject: [themes] fancy theme mod help
In-Reply-To: <43F07C6E.9060207@eeeb.com>
References: <43F07C6E.9060207@eeeb.com>
Message-ID:
It looks like the GIFs rounding up the sides of the tabs were not
saved with transparent backgrounds. Try saving the corners as
transparent GIFs.
On Feb 13 2006, at 07:32, Erik B. Ebright wrote:
> Hey Plp,
>
> 1st big thanks for helping me out with the drupal theme Q&A. I
> have used the fancy theme for my site http://rootsnetwork.org, and
> thought I would share it with you. Also there is one super quick
> question that I have, and that is how can I remove the white space
> in the block title tab area. Really I just want to make it match my
> bkgnd color, and not white. Any help where I would change that in
> the block.css file? Here is quick link to the file for your
> personal reference
> http://www.rootsnetwork.org/v1/themes/fancy/blocks.css
> or maybe it's in
> http://www.rootsnetwork.org/v1/themes/fancy/style.css
>
> Thanks SO MUCH!
>
> -Erik E>
> _______________________________________________
> themes mailing list
> themes@drupal.org
> http://lists.drupal.org/mailman/listinfo/themes
>
From ken at metaskills.net Mon Feb 13 14:58:10 2006
From: ken at metaskills.net (Ken Collins)
Date: Mon Feb 13 14:58:19 2006
Subject: [themes] fancy theme mod help
In-Reply-To: <43F07C6E.9060207@eeeb.com>
References: <43F07C6E.9060207@eeeb.com>
Message-ID:
Looks to me like it is the .bleft and .bright classes in the fancy/
style.css
Take a look at the attached WebKit inspector pallets
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Picture 2.png
Type: image/png
Size: 69888 bytes
Desc: not available
Url : http://lists.drupal.org/pipermail/themes/attachments/20060213/95f534e2/Picture2-0001.png
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Picture 3.png
Type: image/png
Size: 73178 bytes
Desc: not available
Url : http://lists.drupal.org/pipermail/themes/attachments/20060213/95f534e2/Picture3-0001.png
-------------- next part --------------
On Feb 13, 2006, at 7:32 AM, Erik B. Ebright wrote:
> Hey Plp,
>
> 1st big thanks for helping me out with the drupal theme Q&A. I
> have used the fancy theme for my site http://rootsnetwork.org, and
> thought I would share it with you. Also there is one super quick
> question that I have, and that is how can I remove the white space
> in the block title tab area. Really I just want to make it match my
> bkgnd color, and not white. Any help where I would change that in
> the block.css file? Here is quick link to the file for your
> personal reference
> http://www.rootsnetwork.org/v1/themes/fancy/blocks.css
> or maybe it's in
> http://www.rootsnetwork.org/v1/themes/fancy/style.css
>
> Thanks SO MUCH!
>
> -Erik E>
> _______________________________________________
> themes mailing list
> themes@drupal.org
> http://lists.drupal.org/mailman/listinfo/themes
From mcsparkerton at yahoo.co.uk Tue Feb 14 16:50:48 2006
From: mcsparkerton at yahoo.co.uk (andre)
Date: Tue Feb 14 16:51:01 2006
Subject: [themes] fancy theme mod help
In-Reply-To: <43F07C6E.9060207@eeeb.com>
References: <43F07C6E.9060207@eeeb.com>
Message-ID: <43F20A68.1060509@yahoo.co.uk>
cl.png cr.png just need to be modified - not to transparent (that'll
just show the background of the tab) - but to the colour of the
background of the page.
andre
Erik B. Ebright wrote:
> Hey Plp,
>
> 1st big thanks for helping me out with the drupal theme Q&A. I have
> used the fancy theme for my site http://rootsnetwork.org, and thought I
> would share it with you. Also there is one super quick question that I
> have, and that is how can I remove the white space in the block title
> tab area. Really I just want to make it match my bkgnd color, and not
> white. Any help where I would change that in the block.css file? Here is
> quick link to the file for your personal reference
> http://www.rootsnetwork.org/v1/themes/fancy/blocks.css
> or maybe it's in
> http://www.rootsnetwork.org/v1/themes/fancy/style.css
>
> Thanks SO MUCH!
>
> -Erik E>
> _______________________________________________
> themes mailing list
> themes@drupal.org
> http://lists.drupal.org/mailman/listinfo/themes
>
___________________________________________________________
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voicemail http://uk.messenger.yahoo.com
From kieran at civicspacelabs.org Sun Feb 19 23:18:51 2006
From: kieran at civicspacelabs.org (Kieran Lal)
Date: Sun Feb 19 23:18:57 2006
Subject: [themes] 9 Firefox extensions for web development
Message-ID: <6D8D0EA1-85F6-470A-8498-2DE82905B202@civicspacelabs.org>
http://css.weblogsinc.com/2006/02/14/firefox-extensions-i-couldnt-
live-without/
Cheers,
Kieran
From robert.castelo at cortextcommunications.com Mon Feb 20 00:45:19 2006
From: robert.castelo at cortextcommunications.com (Robert Castelo)
Date: Mon Feb 20 00:45:28 2006
Subject: [themes] Bubble Tips
Message-ID: <7cc5f033c0be29bdb19839ecf2c86593@cortextcommunications.com>
Here's a nice technique for displaying tool tips I came across the
other day:
http://web-graphics.com/mtarchive/001717.php
Example page:
http://web-graphics.com/mtarchive/BubbleTooltips.html
Best regards,
Robert
From ber at webschuur.com Mon Feb 20 09:49:45 2006
From: ber at webschuur.com (=?iso-8859-1?q?B=E8r_Kessels?=)
Date: Mon Feb 20 09:50:09 2006
Subject: [themes] Bubble Tips
In-Reply-To: <7cc5f033c0be29bdb19839ecf2c86593@cortextcommunications.com>
References: <7cc5f033c0be29bdb19839ecf2c86593@cortextcommunications.com>
Message-ID: <200602201049.45759.ber@webschuur.com>
Op maandag 20 februari 2006 01:45, schreef Robert Castelo:
> Here's a nice technique for displaying tool tips I came across the
> other day:
>
> http://web-graphics.com/mtarchive/001717.php
>
> Example page:
>
> http://web-graphics.com/mtarchive/BubbleTooltips.html
Nice. And they degrade very nice into normal tooltips.
KDE introduced bubbles too, and they are considered very good usability on top
of just plain-ol-niftyness. :)
From traemccombs at gmail.com Thu Feb 23 20:57:33 2006
From: traemccombs at gmail.com (Trae McCombs)
Date: Thu Feb 23 20:57:42 2006
Subject: [themes] Drupal Installer - CSS suggestions
Message-ID:
Hi gang,
I have spent about 30mins going through the css for the installer. In
general, it's not very pretty and hard to read things. I put in little
spacing here and there to help with things, as well as a wee bit of color.
Please check this out:
http://drupal.org/node/48732#comment-75934
You'll see my suggestions there.
Please let me know if I need to do something to get these changes in.... I
don't know what I should do.
Thanks,
Trae
--
Trae McCombs || http://occy.net/
Founder - Themes.org // Linux.com
CivicSpaceLabs - http://civicspacelabs.org/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.drupal.org/pipermail/themes/attachments/20060223/86db6f6e/attachment.htm