Adding Underline to Links in Expound Theme

  • Unknown's avatar

    Hi All,

    I’ve combed the forums for an answer for this and not gotten the answer I need. I am using the Expound Theme, and have the customize upgrade. I have a very basic understanding of CSS and have gotten as far as to realize each theme calls elements different things.

    What I need is:
    1. To add underlines or change color to all links except for the menu. I need it to be more apparent that you can click a post on the home page to read more.
    2. When viewing a blog post, the heading is huge. I would like to make it smaller or more the same size of H1 headings on pages.

    Thanks in advance!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, I’ve not included the entry meta (date/category) links below the posts and the footer credits in the following CSS.

    .site-content a, .entry-title a {
        text-decoration: underline;
    }
    .site-footer a {
        text-decoration: none;
    }

    If you wish to put underlines on ALL links, then you can use the following instead.

    .site-content a, .site-content .entry-meta a, .entry-title a {
        text-decoration: underline;
    }

    2. For the post title size on single post pages, add the following and adjust as desired.

    .wf-active .single .site-content .entry-title {
        font-size: 47px;
    }
  • Unknown's avatar

    These solutions are precisely what I needed! Thanks for being prompt and awesome!

  • Unknown's avatar

    These solutions are precisely what I needed! Thanks for being prompt and awesome!

  • The topic ‘Adding Underline to Links in Expound Theme’ is closed to new replies.