Wednesday, September 21, 2011

How do I change font and color of my display name? 2.0!!?

I have 2.0 and I want to change the font,size,and color of my display name, how do I do that??



I've found codes to just change the font but I want it to be like this:



I want the font: Georgia



I want the size:32



And the color:OrangeHow do I change font and color of my display name? 2.0!!?
place this in the 'CSS' box



div.basicInfoModule h2.nickname {

font-family: Georgia; font-size: 32px; color: orange;}



*edit*



instead of using the color name you could use the HTML color code



example

color: #00FFFF

color: #41A317



OOFFFF is turtoise

41A317 is lime green

you can easily find this by searching ';HTML color codes';

on google



heres the site i got those colors at

http://www.computerhope.com/htmcolor.htmHow do I change font and color of my display name? 2.0!!?
well i have to say I was gonna say the exact thing...lol



so yeah that code is just the way to go..



div.basicInfoModule h2.nickname {

font-family: Georgia; font-size: 32px; color: orange;}



tested it in my profile...

first i picked a theme...ok



then in the css part copied the code above that was mentioned.



published and went to my home..then to profile and bam there it is..



good work erik360

  • domain name hosting



  • graphics animation
  • How do you keep your msn font change?

    everytime i change my font on msn, it goes back to my old font when i open another conversation. so how do i make a certain font a default for all my conversations?How do you keep your msn font change?
    hi

    open MSN

    tools

    options

    messages

    change the font here and it will be your default one





    ☆?.?*¨*`?.☆? ??ρε ? ?εlρεe☆?.?*¨*`?.?☆

    ::: (\(\

    *: (=' :') :*

    ?.. (,('')('')¤°

    ☆?.?*¨*`?.???ε ? η?¢ε e?у ?.?*¨*`?.?☆

    ☆¢σρчяιg?τ ?2008 χ?η??☆

    ★eση'т ¢σρу, вε σяιgι??★

    How do you keep your msn font change?
    I'm having the same problem with MSN changing the font back every time I close and then re-open the window. I tried changing it as listed above, but it didn't stick. Any ideas?
    Report Abuse

    How do I change font color on a Powerpoint presentation?

    Is there a quick way to change the color of all font on a Powerpoint presentation? My professors all use this dark background w/white text and I'd like to change it to a white background w/black text in order to print them off and not waste tons of ink. Right now I'm changing the font per slide which is taking forever!How do I change font color on a Powerpoint presentation?
    Go to the Slide Master and change the definition of the fonts there. That will change them throughout the presentation.How do I change font color on a Powerpoint presentation?
    In MS Powerpont there are lot of short cuts for quick changes.

    for example ctrl+B, ctrl+I, F5, like that.



    for all short cuts search on powerpoint help. or windows xp main help.
    select them and format them properly

    you'll get an option through which you can do it easily

    How do I change font color dynamically using a HTA (HTML Application)?

    Is there a way to change the font color of text in my hta dynamically? In my hta I have a div and I'd like to change the font color of the text in that div in the code. Is there a way to do this?





    example:





    %26lt;div id=';myDiv';%26gt;Some text%26lt;/div%26gt;





    Is there some property I can change along the lines of





    Sub ChangeColor


    myDiv.color = ';red';


    End SubHow do I change font color dynamically using a HTA (HTML Application)?
    You appear to be writing a script in vbscript. I think what you want is something like:





    %26lt;!DOCTYPE html PUBLIC ';-//W3C//DTD HTML 4.01 Transitional//EN';


    ';http://www.w3.org/TR/html4/loose.dtd'; %26gt;


    %26lt;html lang='en'%26gt;


    %26lt;head%26gt;


    %26lt;meta http-equiv='Content-type' content='text/html;charset=UTF-8'%26gt;


    %26lt;title%26gt;Change Colour%26lt;/title%26gt;


    %26lt;style type=';text/css';%26gt;


    div#myDiv {


    color: blue;


    }


    %26lt;/style%26gt;


    %26lt;script type=';text/vbscript';%26gt;


    Function ChangeColour(colour)


    document.getElementById( ';myDiv'; ).style.color = colour


    End Function


    %26lt;/script%26gt;


    %26lt;/head%26gt;


    %26lt;body%26gt;


    %26lt;h1%26gt;Change Colour%26lt;/h1%26gt;


    %26lt;div id=';myDiv';%26gt;Some text%26lt;/div%26gt;





    %26lt;input type=';button'; onclick=';ChangeColour('red')'; value=';Red';%26gt;


    %26lt;input type=';button'; onclick=';ChangeColour('green')'; value=';Green';%26gt;


    %26lt;input type=';button'; onclick=';ChangeColour('blue')'; value=';Blue';%26gt;


    %26lt;/body%26gt;


    %26lt;/html%26gt;





    However this will only work with IE.





    To work with all browsers you would need to use javascript. In the above you could replace the script with the functionally equivalent:





    %26lt;script type=';text/javascript';%26gt;


    function ChangeColour(colour) {


    document.getElementById( ';myDiv'; ).style.color = colour;


    }


    %26lt;/script%26gt;





    For more on the HTML script tag see: http://www.html-tags-guide.com/html-scri鈥?/a>





    [Edit]





    In terms of your Additional Details:





    Rather than:





    myDiv.innerhtml=';%26lt;font color='red'%26gt;Some text.%26lt;/font%26gt;';





    You could try:





    myDiv.style.color = ';red';How do I change font color dynamically using a HTA (HTML Application)?
    Thanks Michael, great answer.

    Report Abuse



    What you would need to do is to use the style tag of the div





    e.g.





    %26lt;div style=';color:#00FF00';%26gt;


    %26lt;h3%26gt;This is a header%26lt;/h3%26gt;


    %26lt;p%26gt;This is a paragraph.%26lt;/p%26gt;


    %26lt;/div%26gt;

    Change font color of link in one div only?

    When I change the link color in one div, it changes it for all my divs.

    How do I add link color to this div only:

    #Footer {

    position:absolute;

    width:900px;

    height:200px;

    z-index:3;

    left: 0px;

    top: 857px;

    background-color: #2142C3;

    color: #fff600;

    font-family: ';Times New Roman';, Times, serif;

    }Change font color of link in one div only?
    The link styles are a bit confusing to me for some reason (I get confused whether the color attribute and text-decoration attribute are supposed to go in the a selector or the a:link selector), but if you want to only affect an element inside a specific element, do this:



    #Footer a {

    color: #FF0;

    }



    #Footer a:visited {

    color: #FF1010;

    }



    #Footer a:hover {

    text-decoration: underline;

    }



    That will only affect the a tags in the element with the Footer id applied to it.



    Good luck!

    Blake

    I know how to change font with character map but how do you put it on your bebo?

    help pleaseI know how to change font with character map but how do you put it on your bebo?
    Copy and paste should work.

    JAVA: Using JButton to Change font of JLabel?

    How do you change the font of a JLabel in a Java Applet when the user clicks the JButton?



    import javax.swing.*;

    import java.awt.*;

    public class JChangeFont extends JApplet {

    Container con = getContentPane();

    JLabel greeting = new JLabel(';Hello. Who are you?';);

    Font headlineFont = new Font(';Helvetica';, Font.BOLD, 36);

    JButton pressMe = new JButton(';Press to change font';);

    public void init()

    {



    con.add(greeting);

    con.add(pressMe);

    pressMe = greeting.setFont(headlineFont);

    con.setLayout(new FlowLayout());

    }

    }



    It's not workingJAVA: Using JButton to Change font of JLabel?
    Why are you setting a button to the (probably void) results of a setFont function?



    pressme.addActionListener(this);



    And then have a function:

    void actionPerformed(ActionEvent e)

    {

    greeting.setFont(headlineFont);

    }



    and add: , implements ActionListener



    before the first '{' after the class keyword. You should really read the Java tutorial by Sun (I've linked it below).JAVA: Using JButton to Change font of JLabel?
    The previous answerer is right.. you need to add an action listener, like he said.



    The other thing wrong is you don't use 'getContentPane()' with a JApplet.. that is for JFrames only. Instead create a new JPanel and add your stuff onto that. Finally use 'add(your_JPanel)' to include it in the JApplet.



    Good luck!
  • software alternative to excel
  • score a triumph
  •