• Hei,

    I want change color orange for this: Phone, Email and location text and image fa fa

    my code

     <div class="top-bar-left  inside-float col-2-5 float-l">
                                    <ul class="top-bar-menu">
                                        <?php if(!empty($store_contact_address)): ?>
                                            <li>
    											<i class="fa fa-map-marker" aria-hidden="true"></i>
                                                <span><?php echo esc_html($store_contact_address); ?></span>
                                            </li>
                                        <?php endif; ?>
                                        <?php if(!empty($store_contact_phone)): ?>
                                            <li>
                                                <i class="fa fa-phone-square" aria-hidden="true"></i>
                                                <a>">
                                                    <?php echo esc_html($store_contact_phone); ?>
                                                </a>
                                            </li>
                                        <?php endif; ?>
                                        <?php if(!empty($store_contact_email)): ?>
                                            <li>
                                                <i class="fa fa-envelope" aria-hidden="true"></i>
                                                <a>"><?php echo esc_html($store_contact_email); ?></a>
                                            </li>
                                        <?php endif; ?>
                                    </ul>
                                </div>
    • This topic was modified 5 years, 1 month ago by James Huff. Reason: fixed code formatting

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can add the following .css to the customizer or your stylesheet.

    .top-bar-menu, .top-bar-menu a:link{color:orange;}

    The above should turn all text, icons, and links orange. You can change the orange to your shade Hex.

    I hope this helps.

    Thread Starter Robertfdn

    (@robertfdn)

    Nice work, but i want only text please

    Thread Starter Robertfdn

    (@robertfdn)

    sorry, what code is for change top header color?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change color header’ is closed to new replies.