Title: Edit Footer CSS
Last modified: August 30, 2016

---

# Edit Footer CSS

 *  [Akahai](https://wordpress.org/support/users/akahai/)
 * (@akahai)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/)
 * I read about working with the editor, child theme and so on but I am not confident
   enough already to do all of this to solve my problem:
 * I managed to hide parts of the footer. But actually I would like to edit what
   was written there into my companies info.
    How or can I do this with css?
 * If not:
    How Can I make the footer smaller or even delete it?
 * Or: how can I at least add something to the copywrite?
 * Hope sombody can help the greenhorn.

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/edit-footer-css/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/edit-footer-css/page/2/?output_format=md)

 *  [EntropiaStas](https://wordpress.org/support/users/entropiastas/)
 * (@entropiastas)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410172)
 * Hello! You can’t change company info in css. It used only for style.
 * for setting of footer size, you must find his class. then change param “height”
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410271)
 * You can do it using CSS, but only if you have something simple that you want 
   to replace it with. Go to **Appearance → Customize → Layout Options** and add
   this to the **Additional Style** field:
 *     ```
       .site-footer .credit-info {
          display: none;
       }
   
       .site-footer .site-info:after {
          content: 'My Company Info';
          float: right;
       }
       ```
   
 *  Thread Starter [Akahai](https://wordpress.org/support/users/akahai/)
 * (@akahai)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410275)
 * @ entropia Stas:
    Thanks. But what is ‘class’ and where do I find it?
 * @ CrouchingBruin: unfortunately that code doesnt work. Nothing is shown. !?
 * Any idea if I can mayb add something to the copyright?
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410292)
 * Can you please post a link to your site?
 *  Thread Starter [Akahai](https://wordpress.org/support/users/akahai/)
 * (@akahai)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410295)
 * Sorry I thought u can see it:
    [](https://wordpress.org/support/topic/edit-footer-css/www.bluedooragency.com?output_format=md)
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410296)
 * Uh, no, I can’t see your site unless you post a link to it here. Can you do that?
 *  Thread Starter [Akahai](https://wordpress.org/support/users/akahai/)
 * (@akahai)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410297)
 * [http://bluedooragency.com/](http://bluedooragency.com/)
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410298)
 * OK, I see the first rule in your CSS but I don’t see the second. Where is it?
 * It’s possible that the theme’s Custom CSS option does not recognize the `:after`
   pseudo-element as being valid CSS, in which case you might need to use a CSS 
   plugin, like Jetpack or [Custom CSS Manager](http://wordpress.org/plugins/custom-css-manager-plugin/).
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410300)
 * OK, it looks like the theme’s custom CSS editor changes the quote marks to escape
   codes, which is why it’s not showing up properly. Let me work on it a bit more.
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410301)
 * Yeah, I don’t know how to get around that problem, it is definitely a problem
   with their custom CSS editor. You’ll have to try using a CSS plugin if you want
   to make the change using CSS.
 *  Thread Starter [Akahai](https://wordpress.org/support/users/akahai/)
 * (@akahai)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410308)
 * Do you maybe have a code to center the languages in the widget area?
 *  Thread Starter [Akahai](https://wordpress.org/support/users/akahai/)
 * (@akahai)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410312)
 * I can put 4 Widgets in there but i just want to have the multilanguage widget
   in the middle.
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410323)
 * You can try adding this rule to the **Additional Style** field:
 *     ```
       #multi_language_widget-5 {
          position: relative !important;
          float: none !important;
          left: 0 !important;
          margin-left: auto;
          margin-right: auto;
          display: table;
       }
       ```
   
 *  Thread Starter [Akahai](https://wordpress.org/support/users/akahai/)
 * (@akahai)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410381)
 * Thanks a lot! It worked.
 * But 😉
 * Is it possible to center the title, line and Flags as well?
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/#post-6410387)
 * Change the rule to add a **text-align: center** property:
 *     ```
       #multi_language_widget-5 {
          position: relative !important;
          float: none !important;
          left: 0 !important;
          margin-left: auto;
          margin-right: auto;
          display: table;
          text-align: center;
       }
       ```
   

Viewing 15 replies - 1 through 15 (of 16 total)

1 [2](https://wordpress.org/support/topic/edit-footer-css/page/2/?output_format=md)
[→](https://wordpress.org/support/topic/edit-footer-css/page/2/?output_format=md)

The topic ‘Edit Footer CSS’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/i-excel/1.7.9/screenshot.png)
 * i-excel
 * [Support Threads](https://wordpress.org/support/theme/i-excel/)
 * [Active Topics](https://wordpress.org/support/theme/i-excel/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/i-excel/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/i-excel/reviews/)

## Tags

 * [css](https://wordpress.org/support/topic-tag/css/)
 * [footer](https://wordpress.org/support/topic-tag/footer/)

 * 16 replies
 * 3 participants
 * Last reply from: [Akahai](https://wordpress.org/support/users/akahai/)
 * Last activity: [10 years, 9 months ago](https://wordpress.org/support/topic/edit-footer-css/page/2/#post-6410462)
 * Status: not resolved