Need Help.. I want to change the color of links in all my posts.. Plz help

by deepsk
11 replies
  • WEB DESIGN
  • |
Hii, Guys How you all doing ?
#change #color #links #plz #posts
  • Profile picture of the author clickbump
    Since you spent the money to purchase this theme ("Avada" available at themeforest), have you checked their help desk or support forum for an answer?

    I would bet that the theme would have an options panel to allow you to adjust the global link color.

    At a minimum, it should offer a custom css box where you can override default styles. If you have something like that, and you know the specific link class or id you want to modify, you can apply custom css to change it.
    Signature
    {{ DiscussionBoard.errors[8949613].message }}
  • Profile picture of the author deepsk
    Clickbump thanx for the reply. I checked in the options panel but there is no option to change the color of posts links. Can u help me how to override styles or shuld i take help from theme forum support.. Thanks
    {{ DiscussionBoard.errors[8950935].message }}
  • Profile picture of the author WPcrew
    If there's custom css field, you should enter this to change post link color:

    .post-content {
    color: red;
    }

    If there is not, you add it at the end of your style.css.
    {{ DiscussionBoard.errors[8951061].message }}
  • Profile picture of the author deepsk
    WPcrew.. I tried this code but not happening
    {{ DiscussionBoard.errors[8951218].message }}
  • Profile picture of the author WPcrew
    Oh sorry, forgot to add "a" at the end:

    .post-content a {
    color: red;
    }

    This is correct code!
    {{ DiscussionBoard.errors[8951733].message }}
  • Profile picture of the author Istvan Horvath
    or shuld i take help from theme forum support
    YES! If you have a paid proiduct always start with their support. Always!
    Signature

    {{ DiscussionBoard.errors[8954151].message }}
  • Profile picture of the author sham2
    By default the color of link is blue you can edit this in your style.css file. Write this code in style.css.
    a:link, a:visited{ color:#000000;} here 000000 use for color code you can enter your own choice code here.
    {{ DiscussionBoard.errors[8955984].message }}
  • Profile picture of the author deepsk
    Tried all.. but nothing worked
    {{ DiscussionBoard.errors[8957210].message }}
    • Profile picture of the author Istvan Horvath
      Originally Posted by deepsk View Post

      Tried all.. but nothing worked
      Not true! You didn't try the one I asked you to do (instead of posting here):

      Originally Posted by Istvan Horvath View Post

      YES! If you have a paid proiduct always start with their support. Always!
      PLease, report back what was the answer you got from their support!
      Signature

      {{ DiscussionBoard.errors[8957780].message }}
  • Profile picture of the author WPcrew
    I see, your theme adds span tag around anchor.
    Add this:

    .post-content a span {
    color: green !important;
    }

    Now it must work.
    {{ DiscussionBoard.errors[8957297].message }}
  • Profile picture of the author deepsk
    thanx Wpcrew .. finally its worked )
    {{ DiscussionBoard.errors[8958513].message }}

Trending Topics