+ Reply to Thread
Results 1 to 4 of 4

Thread: First letter uppercase

  1. #1
    Senior Member
    Join Date
    Dec 2014
    Location
    Germany
    Posts
    199

    Post First letter uppercase

    Hi,

    I like to now how difficult it is to change the first letter automatically on the registration from the first and last name is always uppercase.

    Right now user can do like day want.

    It will be nice to have it automatically all same.

    Stephane
    Last edited by Stephane Boultgen; March 13, 2015 at 03:51 PM.

  2. #2
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028
    text-transform: capitalize

    you would need to add something like this to the css for your template / css / style.css 1882


    and try and change this

    div.username
    {
    padding: 0 0 5px;
    font-size: 17px;
    text-transform: uppercase;
    }

    div.username
    {
    padding: 0 0 5px;
    font-size: 17px;
    text-transform: capitalize;
    }

    that should put caps in the first spot and not all caps in the user name ? if it is not what you want then show some examples or explain a little more ? or are you taking about as shown in the user cp area ?

  3. #3
    @Pete Young your solution is for all words, not for the 1rst letter.
    he need like exemple :

    First name : Jhon
    Last name : Carter


    and not

    First name : johN
    Last name : cArteR

  4. #4
    Guru
    Join Date
    Jan 2013
    Location
    Australia
    Posts
    2,028
    ? the first example should be wat it does ?

    First name : Jhon
    Last name : Carter

    let me show you

    caps1.jpg

    caps2.jpg

    and here is one that was all caps in the flynax demo and it all worked there as well ? maybe your trying to change it somewhere else ?

    caps3.jpg
    Last edited by Pete Young; March 15, 2015 at 11:59 AM.

+ Reply to Thread