Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8909529
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T03:27:08+00:00 2026-06-15T03:27:08+00:00

I have a wordpress based site where for widgets have titles like Browse By

  • 0

I have a wordpress based site where for widgets have titles like

  • Browse By Category
  • Shopping Cart
  • Newsletter
  • Community Poll
  • etc

Now, I want to display first word of each widget in blue colour and remaining words in black colour.
How do I do that?

(i.e. Browse, Shopping, Newsletter, Community in blue colour rest in black color)

I guess, we can do this using jQuery but I have no idea, how to do that.

EDIT:

Site: http://granitess.com/wp/

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T03:27:09+00:00Added an answer on June 15, 2026 at 3:27 am

    You can try this, get iterate all .widget-title, get its text, split by space and change first word with <span style='color:blue;'> and then join all words and set in .widget-title html. like

    $('.widget-title').each(function(){
        var $title = $(this).text();
        var words = $title.split(' ');
        words[0] = "<span style='color:blue;'>"+words[0]+"</span>";
        $(this).html(words.join(' '));
    });
    

    Edited:

    On your side your widget title is in .widget h3 So try this –

    $('.widget h3').each(function(){
        var $title = $(this).text();
        var words = $title.split(' ');
        words[0] = "<span style='color:blue;'>"+words[0]+"</span>";
        $(this).html(words[0] + ' <span style="color:black;">' + words.slice(1).join(' ') + '</span>');
    });
    

    or If you want same like as in your footer then you can try this

    $('.widget h3').each(function(){
        var $title = $(this).text();
        var words = $title.split(' ');
        $(this).html(words[0] + ' <span style="color:#333333;">' + words.slice(1).join(' ') + '</span>');
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have to create a wordpress based site for programming articles, blogs, videos etc.
At the moment, I have a wordpress-based site at http://sub.mydomain.com , running for 2
I have a wordpress based classifieds site, i am trying to create and xml
I have a wordpress based site, that has data divided in it on the
i have a wordpress based website. I have a standard wordpress loop that executes
i'm building a wordpress webpage based on the Skeleton Wordpress theme. I have 2
I have a website based on Wordpress, built with pages. I need to have:
I am working with wordpress and I have to display a menu based on
I have wordpress a site with a customized login page, the problem is when
I am trying to develop a bilingual site based on WordPress (bilingual sites in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.