Dark theme visibility problems

  • Posted in : Responsy
  • tdbartley
    Participant

    The dark theme has visibility problems for many elements. For instance, on the contact page right sidebar: icon-map-marker, icon-time, icon-print and icon-envelope are visually lost in the background because they are both the same color. This problem exists in various other places throughout the theme.

    ahmetsali
    Keymaster

    Hi, for contact page, find this html markup;

    <div class="contact-info">
        <p><i class="icon-map-marker"></i>795 Folsom Ave, Suite 700 San Francisco, CA 94107</p>
        <p><i class="icon-time"></i><b>Tel:</b> 999 888 77 66</p>
        <p><i class="icon-print"></i><b>Fax:</b> 999 888 77 66</p>
        <p><i class="icon-envelope"></i><b>E-Mail:</b> info@company.com</p>
    </div>
    

    and change it to this;

    <div class="contact-info">
        <p><i class="icon-map-marker icon-white"></i>795 Folsom Ave, Suite 700 San Francisco, CA 94107</p>
        <p><i class="icon-time icon-white"></i><b>Tel:</b> 999 888 77 66</p>
        <p><i class="icon-print icon-white"></i><b>Fax:</b> 999 888 77 66</p>
        <p><i class="icon-envelope icon-white"></i><b>E-Mail:</b> info@company.com</p>
    </div>
    
Viewing 2 posts - 1 through 2 (of 2 total)

The forum ‘Responsy’ is closed to new topics and replies.