unable to insert hyperlink in post

Homepage Community Forums Epik Theme Support unable to insert hyperlink in post

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #9643
    Event
    Customer

      Hello,

      Our Website is: http://www.assetloan.com
      On the hompage under the slider in the welcome area we are unable to insert a hyperlink to the words “Learn more” through the wordpress dashboard.

      We wish to link the words learn more to this page: http://assetloan.com/referral-partner-program/

      “Did you know? Our partner referral program is quite lucrative and rewarding. Learn more…”

      Please help.
      Thank you.

      #9644
      Event
      Customer
        This reply has been marked as private.
        #9653
        Wes
        Moderator

          You create a link by adding the hyperlink code around the text. Example –

          <a href="http://add_link_here.com">Your text goes here</a>

          #9662
          Event
          Customer
            This reply has been marked as private.
            #9668
            Wes
            Moderator

              I can actually see the code from the site itself (Page Source Code) without needing to login. It’s showing up correctly, but the color is white and you have your background set as white which means it can’t be seen. You can add or change the code like this –

              .epik-blue .welcome a {
                  color: #333;
              }

              The code is already in your css, but it’s bundled with other code. You can split it up or add the code above to change it.

              #9673
              Event
              Customer
                This reply has been marked as private.
                #9674
                Wes
                Moderator

                  The line that it’s coming from is line 2857 in your css –

                  .epik-blue .head-wrap a,
                  .epik-blue .welcome a,
                  .epik-blue .home-feature-bg-dark a,
                  .epik-blue .author-box a,
                  .epik-blue .footer-widgets a {
                  	color: #fff;
                  }

                  But you could add that code above and it would fix it as well.

                  #9678
                  Event
                  Customer

                    Thank you, that worked.
                    However I noticed that the font of the words “Learn more” is now a bit thicker than the other words that are on the same line. Any solution for this?

                    #9681
                    Wes
                    Moderator

                      Yes it’s supposed to do that normally for links. But you can change the font-weight like this –

                      font-weight: 300;

                    Viewing 9 posts - 1 through 9 (of 9 total)
                    • You must be logged in to reply to this topic.