phone number Text colour in header

Discussion in 'Compass WordPress Theme' started by randybett, Mar 30, 2015.

Thread Status:
Not open for further replies.
  1. randybett

    randybett Member

    Joined:
    Jul 7, 2014
    Messages:
    31
    Likes Received:
    0
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello randybett!

    Above provided URL is not a valid URL.
    Please provide a valid URL.

    Thanks,
    Praveen
     
  3. randybett

    randybett Member

    Joined:
    Jul 7, 2014
    Messages:
    31
    Likes Received:
    0
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello Randybett!

    The provided url is not opening your website.
    Please have a look at the video link :- http://screenpresso.com/=cnEic

    Thanks,
    Praveen
     
  5. randybett

    randybett Member

    Joined:
    Jul 7, 2014
    Messages:
    31
    Likes Received:
    0
    Parveen thanks for the video.

    I have no idea why it is not opening at your end.

    Any rough idea how to change text colour in header
     
  6. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hello randy!

    There is a way which can be helpful in resolving your issue.

    Open "header.php" file of the theme and provide us its code.
    We will have a look at them and try to guide you to resolve the issue.

    Thanks,
    Praveen
     
  7. randybett

    randybett Member

    Joined:
    Jul 7, 2014
    Messages:
    31
    Likes Received:
    0
    <?php
    /**
    * The Header for our theme.
    *
    * Displays all of the <head> section and everything up till <div id="main">
    *
    */
    ?>
    <!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset="<?php bloginfo('charset'); ?>" />
    <title>
    <?php wp_title('&#124;', true, 'right'); ?><?php bloginfo('name'); ?>
    </title>
    <?php if (is_front_page()) { ?>
    <?php if (inkthemes_get_option('inkthemes_keyword') != '') { ?>
    <meta name="keywords" content="<?php echo inkthemes_get_option('inkthemes_keyword'); ?>" />
    <?php } else {
    }
    ?>
    <?php if (inkthemes_get_option('inkthemes_description') != '') { ?>
    <meta name="description" content="<?php echo inkthemes_get_option('inkthemes_description'); ?>" />
    <?php } else {

    }
    ?>
    <?php if (inkthemes_get_option('inkthemes_author') != '') { ?>
    <meta name="author" content="<?php echo inkthemes_get_option('inkthemes_author'); ?>" />
    <?php } else {

    }
    ?>
    <?php } ?>
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
    <link rel="profile" href="http://gmpg.org/xfn/11" />
    <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" />
    <?php wp_head(); ?>
    </head>
    <body <?php body_class('compass_theme'); ?> style="<?php if (inkthemes_get_option('inkthemes_bodybg') != '') { ?>background: fixed url(<?php echo inkthemes_get_option('inkthemes_bodybg'); ?>);<?php } else {
    ?> <?php } ?>">
    <div class="container_24">
    <div class="grid_24">
    <div class="page_content_wrapper">
    <div class="header">
    <div class="grid_8 alpha">
    <div class="logo">
    <a href="<?php echo home_url(); ?>"><img src="<?php if (inkthemes_get_option('inkthemes_logo') != '') { ?><?php echo inkthemes_get_option('inkthemes_logo'); ?><?php } else { ?><?php echo get_template_directory_uri(); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?> logo"/></a>
    </div>
    </div>
    <div class="grid_4 main header">
    <p class="text-header">
    <a href="tel:+15406601619">Call us 540 660 1619</a>
    </p>
    </div>
    <div class="clear"></div>
    <div class="grid_24 omega">
    <div class="menu_wrapper">
    <div id="MainNav">
    <?php inkthemes_nav(); ?>
    </div>
    </div>
    </div>
    <div class="clear"></div>
    </div>
     
  8. sameerwalkar

    sameerwalkar Guest

    Hi,

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard

    Code:
    p.text-header a {
      color: red;
      font-size: 20px;
    }
    Hope it would solve your issue.

    Regards,
    Sameer
     
  9. randybett

    randybett Member

    Joined:
    Jul 7, 2014
    Messages:
    31
    Likes Received:
    0
    Thanks :)
     
Thread Status:
Not open for further replies.

Share This Page