• (Yes Elvis, i’ve tried searching)..

    I’m trying to apply the <sub> tags to the links on my blog, the thing is, i want it to apply only for posts and not to other links (like those in the sidebar etc..), how can this be done?

    Thanks,
    Heat

Viewing 3 replies - 1 through 3 (of 3 total)
  • I’m not sure I understand your question. Can’t you just place your links inside <sub> elements when composing your posts?

    Elvis has left the forum.

    Thread Starter Heat

    (@heat)

    I’m afraid not, i write about 10 posts daily, and even writing <sub></sub> is considered a waste of time for me, i’m sure it’s something that has to do with CSS..

    Heat

    Well, you can assign properties to <a> tags duplicating <sub>. Your site uses the default theme, so you can apply it to links only appearing in paragraphs within the ‘post’ div class:

    .post p a {
    font-size: 75%;
    vertical-align: sub;
    }

    Adjust the font-size value to get what you’re after.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Applying subscript tags on post links’ is closed to new replies.