Boarder

Discussion in 'RoadFighter WordPress Theme' started by rdeshazer, Aug 28, 2015.

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

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    Hello,

    1. I would like to add two boarders around each of the column feeds on the News Page.
    One Boarder around the HCAC II Feed.
    One Boarder around the Blue Bird Feed.

    2. Also I would like for the font to be all Black, for some reason some of the text is gray.

    http://hennessycapllc.com/Sandbox/news/

    Attached is an example of what I'm talking about

    3. How can i change the color of this hyperlink when you mouse over it:"<h5><span style="color: #000000;">Blue Bird: <span style="color: #008000;"><a style="color: #008000;" href="http://investors.blue-bird.com/corporateprofile.aspx?iid=4042668" target="_blank">Investor Relations</a></span></span></h5>"
    Right now its green and when you mouse over it, i would like the color to turn blue.

    http://hennessycapllc.com/Sandbox/hcac1/

    Thx
     

    Attached Files:

  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    You can easily resolve your issue, you just have to paste the CSS code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    1.) As per your first query i.e. related to the border, CSS code is given below:

    Code:
    ul.rss-aggregator {
        border: 1px solid black !important;
    }
    Note: Change the color with your desired one..

    2.) As per your second query i.e. to change the text color from gray to black, code is given below:

    Code:
    2) li.feed-item a {
        color: black !important;
    }
    3.) Regarding your third query i.e. to change the color of hyperlink, code is given beloww:

    Code:
    3) #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover {
          color: blue !important;
    }
    Note: Please change hover color as per your interest..

    Hope it will resolve your issues..

    Thanks & Regards!
    Priyanka
    Inkthemes.com
     
  3. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    Hi Priya,

    For number 3 i was actually referring to hyperlinks within the body of text, not the menu. Hyperlinks that i created to link to external pages outside of the website. 3. How can i change the color of this hyperlink when you mouse over it:"<h5><span style="color: #000000;">Blue Bird: <span style="color: #008000;"><a style="color: #008000;" href="http://investors.blue-bird.com/corporateprofile.aspx?iid=4042668" target="_blank">Investor Relations</a></span></span></h5>"
    Right now its green and when you mouse over it, i would like the color to turn blue.
    http://hennessycapllc.com/Sandbox/hcac1/

    Attached is a pdf of one of the pages with external hyperlinks that I'm referring too, hopefully this is helpful in you resolving the issue.

    Thx
    R
     

    Attached Files:

  4. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    You can use the given CSS code in your Custom CSS field (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard to change the color (blue) during mouse over it.

    Code:
    .fullwidth h5 span a:hover {
        color: blue !important;
    }
    In case, if you want to change the color of text from green to some other color except hover property, the code is given below:
    Code:
    .fullwidth h5 span a {
        color: red !important;
    }
    Note: Please change the color as per your interest.

    Hope it will resolve your last issue

    Thanks & Regards!
    Priyanka
    Inkthemes.com
     
  5. rdeshazer

    rdeshazer Member

    Joined:
    Dec 21, 2014
    Messages:
    302
    Likes Received:
    0
    Location:
    USA
    Thank you that worked.
     
Thread Status:
Not open for further replies.

Share This Page