• I’ve got a theme I like but it doesn’t highlight or underline links in my posts. How and where do I make adjustments to change the way this theme presents links in posts?
    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter rylanherring

    (@rylanherring)

    Thanks. I’m asking for the file in which these commands would be found. And what the commands would look like so I can find them and adjust them. I appreciate all help!
    Rylan

    Ive provided you links that will answer your questions — they are NOT commands. If you had clicked the links, you would know that.

    I’ll give you one free pass on NOT reading the documentation provided.

    this is in your theme’s style.css:

    .sidebaritem a, #column2 a, .sidebaritem a:hover, #column2 a:hover
    { padding: 0px 0px 2px 0px;
      text-decoration: none;
    }

    Changing that to this will cause your links, including those in the sidebar to be underlined:

    .sidebaritem a, #column2 a, .sidebaritem a:hover, #column2 a:hover
    { padding: 0px 0px 2px 0px;
      text-decoration: hover;
    }

    IF you dont want the sidebar links underlined, than you need to break that up.

    PLease aquaint yourself with the vast wealth of information in the codex. Its there to help you and us, also.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Adjust a links appearance in posts’ is closed to new replies.