Title: Customize header line with CSS
Last modified: February 16, 2020

---

# Customize header line with CSS

 *  Resolved [taubeundspatz](https://wordpress.org/support/users/taubeundspatz/)
 * (@taubeundspatz)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/)
 * Hello there!
 * I would like to do something that I assume is quite simple, nevertheless since
   I do not have the coding knowdlege, I do not how to do it. I hope you can help
   me!
 * I have the following header saying “zahlungsart auswählen”:
 * [https://www.bilder-upload.eu/bild-691f06-1581870741.jpg.html](https://www.bilder-upload.eu/bild-691f06-1581870741.jpg.html)
 * Now I do want to add some custom css code to rename it into something different.
   The whole style and everthing stays the same, just the name I’d like to change.
 * My first question would be: Is it the right way to do it via custom CSS or should
   I change it anywhere else? And the second would be: What’s the CSS code I need
   to do that?
 * Thanks a lot
 * Felix
    -  This topic was modified 6 years, 2 months ago by [taubeundspatz](https://wordpress.org/support/users/taubeundspatz/).

Viewing 10 replies - 1 through 10 (of 10 total)

 *  [indreshyadav](https://wordpress.org/support/users/indreshyadav/)
 * (@indreshyadav)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12443873)
 * hello
    [@taubeundspatz](https://wordpress.org/support/users/taubeundspatz/) You
   can use the following css. It will help you.
 *     ```
       #order_payment_heading {
       display:none !important;
       }
       ```
   
 *  Thread Starter [taubeundspatz](https://wordpress.org/support/users/taubeundspatz/)
 * (@taubeundspatz)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12444117)
 * Hello,
 * thanks for the advice! Unforunately with this code I remove the heading. I do
   want to keep it, though, just with another name. Could you please tell me how
   I can add the new name of the heading?
 * Thanks
 * Felix
 *  [indreshyadav](https://wordpress.org/support/users/indreshyadav/)
 * (@indreshyadav)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12444855)
 * hello,
    [@taubeundspatz](https://wordpress.org/support/users/taubeundspatz/) 
   sorry for previous wrong reply. you can use LOCO translate plugin to change the
   string.
    -  This reply was modified 6 years, 2 months ago by [indreshyadav](https://wordpress.org/support/users/indreshyadav/).
 *  Thread Starter [taubeundspatz](https://wordpress.org/support/users/taubeundspatz/)
 * (@taubeundspatz)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12447240)
 * But how do I do this? I installed the plugin, but I didn’t find a way to rename
   one single header with it.
 *  [indreshyadav](https://wordpress.org/support/users/indreshyadav/)
 * (@indreshyadav)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12448878)
 * Hello,
    [@taubeundspatz](https://wordpress.org/support/users/taubeundspatz/) 
   Go to the Loco Translate–>plugins->WooCommerce here is screenshot, search the
   string you want to translate.
 * > [Screenshot](https://imgur.com/bq8fZlb)
 *  Thread Starter [taubeundspatz](https://wordpress.org/support/users/taubeundspatz/)
 * (@taubeundspatz)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12456769)
 * Thanks a lot! That worked perfectly!
 * There’s one more thing that I just came up with. It’s in the very same section,
   maybe you can help me with that too? The line just below (“Nur Vorkasse …”) is
   not centered but rather to far on top of the box. Is there a simple CSS how to
   fix that, will say, to get it centered inside the box?
 * [https://www.bilder-upload.eu/bild-02eaff-1582132352.jpg.html](https://www.bilder-upload.eu/bild-02eaff-1582132352.jpg.html)
 * Thank you!
 * Felix
 *  [indreshyadav](https://wordpress.org/support/users/indreshyadav/)
 * (@indreshyadav)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12458653)
 * hello,
    [@taubeundspatz](https://wordpress.org/support/users/taubeundspatz/) 
   can you provide the site url where you want? so that we can provide you correct
   css.
 *  Thread Starter [taubeundspatz](https://wordpress.org/support/users/taubeundspatz/)
 * (@taubeundspatz)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12458688)
 * It’s the checkout page of the Shop. The URL would be [https://www.taubeundspatz.de/kasse](https://www.taubeundspatz.de/kasse),
   nevertheless you have to add something to the cart before you can see it, I guess.
   Maybe you can add one product through [http://www.taubeundspatz.de/shop](http://www.taubeundspatz.de/shop)
   and you’ll get to it?
 *  [indreshyadav](https://wordpress.org/support/users/indreshyadav/)
 * (@indreshyadav)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12459730)
 * Hello,
    [@taubeundspatz](https://wordpress.org/support/users/taubeundspatz/) 
   you can use the following css.
 *     ```
       .woocommerce-checkout #payment label {
           position: relative;
           top: 0 !important;
           margin-bottom: 0;
           line-height: 15px;
           left: 22px;
       }
       ```
   
 *  Thread Starter [taubeundspatz](https://wordpress.org/support/users/taubeundspatz/)
 * (@taubeundspatz)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12461285)
 * Thank you so much! That worked perfectly!

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Customize header line with CSS’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce/assets/icon.svg?rev=3234504)
 * [WooCommerce](https://wordpress.org/plugins/woocommerce/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce/reviews/)

 * 10 replies
 * 2 participants
 * Last reply from: [taubeundspatz](https://wordpress.org/support/users/taubeundspatz/)
 * Last activity: [6 years, 2 months ago](https://wordpress.org/support/topic/customize-header-line-with-css-2/#post-12461285)
 * Status: resolved