Title: transferring CSS customization from wordpress.com
Last modified: August 24, 2016

---

# transferring CSS customization from wordpress.com

 *  Resolved [smgianotti](https://wordpress.org/support/users/smgianotti/)
 * (@smgianotti)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/transferring-css-customization-from-wordpresscom/)
 * I just switched from wordpress.com to wordpress.org and installed the Standard
   Theme that I had been using, but cannot figure out how to transfer my CSS customizations.
 * On wordpress.com, under appearance and customization there was a CSS editor and
   I have copied all my edits. However, when I try to paste this into jetpack’s 
   CSS editor or other CSS plug-ins (Simple Custom CSS, WP Add Custom CSS) nothing
   happens.
 * Perhaps the format of the CSS code has to be different? Below is a small part
   of I copied from the wordpress.com CSS editor.
 * I would appreciate any help!
 * Shannon
 * /* Header
    —————————————————————- */ /* Header Text ———————————————- */ /* site
   title */ #site-title, #site-title a { color: #357FB5; }
 * #site-title a:hover {
    color: #357FB5; }
 * /* tagline */
    #site-description { color: #2978a2; }
 * #site-title {
    text-align: center; }
 * #site-description {
    text-align: center; }
 * #site-description {
    position: inherit; width: 100%; top: 0; display: block; 
   text-align: center; }
 * .post .thumbnail {
    background: transparent; border: none; -webkit-box-shadow:
   none; -moz-box-shadow: none; box-shadow: none; }
 * .the-tags {
    display: none; }

Viewing 3 replies - 16 through 18 (of 18 total)

[←](https://wordpress.org/support/topic/transferring-css-customization-from-wordpresscom/?output_format=md)
[1](https://wordpress.org/support/topic/transferring-css-customization-from-wordpresscom/?output_format=md)
2

 *  Thread Starter [smgianotti](https://wordpress.org/support/users/smgianotti/)
 * (@smgianotti)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/transferring-css-customization-from-wordpresscom/page/2/#post-5970326)
 * To clarify, I split the font-size code you gave me, since I wanted to assign 
   different sizes to them, but I looked back into CSS tried a couple things and
   this worked:
 * .entry-title {
    font-size: 28px; }
 * As for the links. I think I get it now. I use a blog editor that feeds into the
   site and on it the links are blue. So, I changed the HTML code there.
 * Will look into the Google Fonts soon.
 * Thank you for your help!
 *  Thread Starter [smgianotti](https://wordpress.org/support/users/smgianotti/)
 * (@smgianotti)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/transferring-css-customization-from-wordpresscom/page/2/#post-5970395)
 * Thank you for the tip on Google Fonts! The site looks great now.
 * Thank you for all your help! You’ve been a life-saver, or a site-saver 🙂
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/transferring-css-customization-from-wordpresscom/page/2/#post-5970396)
 * Hi, Shannon:
 * The site is looking great! However…
 * It’s not using the Yanone Kaffeesatz font that you’ve specified in your CSS. 
   The font actually has a slightly rounder look to it. You can see what the font
   should look like on [this site](http://montezuma.inrgee.com/). Your site is actually
   using the “backup” sans-serif font.
 * There are two problems:
    1. You have to let the browser know where to find the font (i.e., if it’s a Google
       font, then the browser will have to know to download it from Google). You can
       do this one of two ways:
 *  1. Add this link to the head section of your site:
    2.     ```
           <link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:400,200' rel='stylesheet' type='text/css'>
           ```
       
    3. You can do that using a plugin like [Header and Footer](http://wordpress.org/plugins/header-footer/).
       **
       or,**
    4. Add this [@import](https://wordpress.org/support/users/import/) statement to
       your CSS:
    5.     ```
           @import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:400,200);
           ```
       
    6. I would try this option first, since it’s the easiest.
 * Each of these options tell the browser where to download the font from.
    - The other problem is that when you specify the name of a font family that 
      has an embedded space, you need to enclose the full name in quote marks, either
      single quotes (i.e., apostrophes) or double quotes. In other words, it should
      look like this:
    -     ```
          font-family: 'Yanone Kaffeesatz', sans-serif;
          ```
      

Viewing 3 replies - 16 through 18 (of 18 total)

[←](https://wordpress.org/support/topic/transferring-css-customization-from-wordpresscom/?output_format=md)
[1](https://wordpress.org/support/topic/transferring-css-customization-from-wordpresscom/?output_format=md)
2

The topic ‘transferring CSS customization from wordpress.com’ is closed to new replies.

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)
 * [customization](https://wordpress.org/support/topic-tag/customization/)
 * [standard theme](https://wordpress.org/support/topic-tag/standard-theme/)
 * [wordpress.com](https://wordpress.org/support/topic-tag/wordpress-com/)

 * 18 replies
 * 2 participants
 * Last reply from: [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * Last activity: [11 years, 2 months ago](https://wordpress.org/support/topic/transferring-css-customization-from-wordpresscom/page/2/#post-5970396)
 * Status: resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
