• Drupal Services

    Whether you are building a new Drupal Site, are migrating to Drupal or already have a Drupal site that need support, we are here to help, check out our Drupal Services.

    Our Drupal Services ...
  • 508 & Accessibility

    If making the site 508 compliant is part of your requirement, we can make it happen. For existing sites, we will assess and fix 508 issues. For new project, we will build with 508 in mind.

    More about 508
  • Developer Training

    We will teach you coding (HTML, CSS, JQUERY ...), the language that every device speaks, the language of the 21st century.

    Learn More ...

We can help with the following and much more...


Drupal Services

Site development, system integration, commerce, e-learning, migration, support... and more; all powered by Drupal.

Learn More ...

Website Development

We can help developing a new site or upgrading (design, videos, audios, photos, content, forms ... and more) an the existing one!

Learn More ...

508 & Accessibility

We can assess, quote and resolve all 508 and accessibility issues on your existing site, or build your new site with 508 and accessibility in mind.

Learn More ...

Developer Training

We will teach you coding (HTML, CSS, JQUERY ...), the language that every device speaks, the language of the 21st century.

Learn More ...

Consulting

You don't know where to start? You are not alone. The web is complex; and the way you present your data is very important for reception and digestion.

Learn More ...

Websites Hosting

Avoid the hassle of maintaining a server. We can do it so you can use your time on more important stuff!

Learn More ...

Want to give it a shot?
Request a Quote. It's free!

 

Code Snippets & Tips

Css target element by href attribute

Snippet Category: 

Css

If an HTML element don't have a "class" or "id", it is possible to use any other attribute, including the "href" to target it.

HTML
<a href="my_page">My Page</a>
CSS
a[href^="my_page"] {background:#ff0000;}

Recommended Plugin