How i can change text font of my web site?

Hi
How i can change text font of my web site, i have garland theme and i want Arial like text font but i don't find how i can modyfy it.
Thx for all answers.

How i can change text font of my web site?

Hi
How i can change text font of my web site, i have garland theme and i want Arial like text font but i don't find how i can modyfy it.
Thx for all answers.

Cannot Admin site all you see is menu No Content

I Have this site up since 5.x came out its been fine, but last time i added
content , When i returned all i see is the menu titles cannot bring up any content only menu, cannot go to any extra pages only front page.
only menu visable and will not edit.
need advice gang3

290 queries

I have set up a test site on my local machine. I have generated dummy nodes using devel module.
I haven't installed a couple of other modules (panel, views, taxonomy block. )

I have enabled query logging. I found that Drupal execute 290 queries on loading /node page. It is very big count. How I can reduce it.
---
Sharique

Speed up massive node inserts

I'm working on a custom module that exposes a new node type. When the node type is edited/created it generates a massive amount of new nodes (about 11,000) as well as deleting the previous nodes that were generated (the previous 11,000.) As you might imagine this is taking quite a long time. Currently I'm creating each node with node_save() and deleting each node with node_delete(). Now I can go outside the box and run blanket delete statements on the tables as well as looking into some type of faster insert. But I'm wondering if there are other ways I can go about this.

small performance improvement in the core for loops

I have look into some modules of Drupal core, and I found some issues:

For example, this code in locale.inc

          for ($i = 3; $i <= count($entries); $i++) {
            $english[] = $english[1];
          }

If $entires is huge number... that will cause a huge amount of function calls

Also, ++$i is faster than $i++, --$i is faster than $i--. Maybe it's better to change all $i++ in the for loops into ++$i.

And, some loops can be looped backward, like this one in xmlrpc.inc

Pages

Subscribe with RSS Subscribe to RSS - Deprecated - Performance and scalability