Upgrade to BlackRiders Pro version - Page Title / Tagline problems

Discussion in 'Blackriders WordPress Theme' started by ajayjob, Apr 8, 2015.

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

    ajayjob New Member

    Joined:
    Mar 25, 2015
    Messages:
    14
    Likes Received:
    0
    Location:
    Croydon, Surrey, UK
    Hi there
    I upgraded to Pro version by copying in the theme files using FTP, as recommended by you. All is well except the Page Title and Tagline are not being picked up at all. Please see my website at www.relicdistribution.co.uk Thanks.
    Regards
    Ajay Job
     
  2. praveen

    praveen Support Staff

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

    I am unable to understand your issue.
    Could you please provide us some edited screenshots of your issue so that we can assist you accordingly?

    Thanks,
    Praveen
     
  3. ajayjob

    ajayjob New Member

    Joined:
    Mar 25, 2015
    Messages:
    14
    Likes Received:
    0
    Location:
    Croydon, Surrey, UK
  4. ajayjob

    ajayjob New Member

    Joined:
    Mar 25, 2015
    Messages:
    14
    Likes Received:
    0
    Location:
    Croydon, Surrey, UK
    Also see the settings in the Site Title and Tagline which should appear in the page header on all pages - worked fine before the upgrade to Pro??

    RELICpagehdr2.JPG
    Thanks
    Ajay Job
     
  5. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hey, Ajay Job!

    Please follow the screenshot given below.
    blackrider_replace_logo_image_with_logo_text.png
    PHP:
     <a href="<?php echo esc_url(home_url()); ?>"><h1 class="logo_title"><?php bloginfo('title'); ?></h1></a>
     <h4 class="logo_tagline"><?php bloginfo('description'); ?></h4>
    Thanks,
    Praveen
     
    ajayjob likes this.
  6. ajayjob

    ajayjob New Member

    Joined:
    Mar 25, 2015
    Messages:
    14
    Likes Received:
    0
    Location:
    Croydon, Surrey, UK
    Great fix - The Site Title and Tagline is back!!

    But, I need to display them in White color and centralized please.
    I also need to change the font for both to Arial, make the Title bold, and to make the Tagline display in Italics

    Many thanks
    Ajay joba
     
  7. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hey, Ajay Job!

    To make tagline italic,replace the h4 line from the previously provided code with the code given below.
    Code:
    <h4 class="logo_tagline"><i><?php bloginfo('description'); ?></i></h4>
    Now, paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    h1.logo_title {
      color: white;
      font-weight: bold;
      text-align: center;
    }
    h4.logo_tagline {
      color: white;
      text-align: center;
     
    }


    Thanks,
    Praveen
     
    ajayjob likes this.
  8. ajayjob

    ajayjob New Member

    Joined:
    Mar 25, 2015
    Messages:
    14
    Likes Received:
    0
    Location:
    Croydon, Surrey, UK
    Thanks a lot Praveen - all works nicely - cheers
    Can you also tell me how to switch off the < and > navigation icons from the Home Page photo slider?
    Regards
    Ajay Job
     
  9. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi, Ajay Job!

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .flex-direction-nav {
      display: none !important;
    }
    Thanks,
    Praveen
     
  10. ajayjob

    ajayjob New Member

    Joined:
    Mar 25, 2015
    Messages:
    14
    Likes Received:
    0
    Location:
    Croydon, Surrey, UK
    Magic - solution works - thanks

    Regards
    Ajay Job
     
Thread Status:
Not open for further replies.

Share This Page