Home>Support>Links and tags in Vantage Premium Theme

Links and tags in Vantage Premium Theme

Hi

I have the Premium Vantage Theme but I’m not sure how to access the premium support, so I’ll post my queries here if that’s ok?

My first question concerns links – Firstly I want to set the default colour of any linked text to match the rest of the text in the post (black), without having to go through each post to change it to black manually.

I also want to remove the line that sits underneath any hyper-linked word or text in a post/page etc.

Secondly, is it possible to remove category and tags from the bottom of each post/page?

Many thanks for your help.

IM

This is our free support forum. Replies can take several days. If you need fast email support, please purchase a SiteOrigin Premium license.

  1. 10 years, 4 months ago Andrew Misplon
    Hi, I Work Here

    Hi Iain

    Thanks for running Vantage Premium.

    It’s up to you, you’re welcome to open public threads and we’ll assist here OR as a premium user you can also email us on [email protected].

    Appearance > Customize > General has an option that’ll let you set the content link color. Due to some legacy issues this option unfortunately doesn’t change all link colors, notably some widgets retain the default link colors. If you want to set the link color for these areas too, try inserting the following under Appearance > Custom CSS:

    /* Links */
    #main a { color: #dd3333; text-decoration: none !important; }
    #main a:hover { color: #2b1100; text-decoration: none !important; }

    And change my colors to the ones you require.

    The CSS above will sort out your second query to remove the link underline.

    It’s not possible to remove cats and tags from the bottom of posts without child theming. We can however remove them with CSS, insert into Custom CSS:

    /* Hide Entry Categories */
    
    article.post .entry-categories, article.page .entry-categories {
    display: none;
    }
  2. 10 years, 4 months ago Iain McMullen

    Hi Andrew

    That works for me – thanks.

    One issue regarding the tags/categories however – I use the “Wiki” plugin (https://wordpress.org/plugins/wordpress-wiki-plugin/) for the majority of my posts and the tags/categories are still visible on those Wiki pages. Is there another bit of CSS to add to the /*Hide Entry Categories*/ ?

    Many thanks

    Iain

  3. 10 years, 4 months ago Andrew Misplon
    Hi, I Work Here

    Cool.

    Could you send me a link to the issue wrt to tags/categories showing on the wiki pages and I’ll take look.

    Thanks

  4. 10 years, 4 months ago Iain McMullen

    Sure – here you go, the categories and tags are at the bottom of the “Wiki” page:

    http://www.footballandthefirstworldwar.com/wiki/joe-bache/

  5. 10 years, 4 months ago Andrew Misplon
    Hi, I Work Here

    Just going on that container class it looks to be part of the plugin:

    incsub_wiki_bottom

    Is it perhaps possible to turn off using the plugin options?

    The word category is in the same container as the subscribe form so if the plugin doesn’t have an option to hide those tags then try this under Appearance > Custom CSS – a little creativity:

    .incsub_wiki_bottom, .incsub_wiki-tags a, .incsub_wiki-category a { color: transparent !important; }
    .incsub_wiki-subscribe { color: black; margin-top: -20px;  }
  6. 10 years, 4 months ago Andrew Misplon
    Hi, I Work Here

    Or to keep your CSS more organised:

    /* Hide Wiki Tags and Categories Using Transparency */
    
    .incsub_wiki_bottom, .incsub_wiki-tags a, .incsub_wiki-category a { color: transparent !important; }
    .incsub_wiki-subscribe { color: black; margin-top: -20px;  }
  7. 10 years, 4 months ago Iain McMullen

    That’s great thanks. One other thing – how do I change the hover colour of the circles that are on my home page herehttp://www.footballandthefirstworldwar.com/ ? I want them to be black but turn red when I hover over them.

    Many thanks!

  8. 10 years, 4 months ago Andrew Misplon
    Hi, I Work Here

    Try this:

    /* Circle Icon */
    
    .widget_circleicon-widget .circle-icon-box .circle-icon {
    background: black !important;
    }
    
    .widget_circleicon-widget .circle-icon-box .circle-icon:hover {
    background: red !important;
    }

    black and red can be changed to hexadecimal colors if you want to get more specific there (http://www.w3schools.com/html/html_colors.asp)

  9. 9 years, 4 months ago Victor Dias

    Hi Andrew
    I am running vintage premium and I was wondering how can I remove the underline from the links in the footer. I managed to do it on the other links using the css code above but doesn’t work on the footer. Please help thanks
    Victor

    • 9 years, 4 months ago Andrew Misplon
      Hi, I Work Here

      Hey Victor

      Just shooting from the hip, it might be something like this:

      #colophon .widget a, 
      #colophon .widget a:hover {
      text-decoration: none;
      }
      

      Insert the above under Appearance > Custom CSS.

      If that doesn’t help please open a new thread: Page: New Thread. Once the new thread has been posted, let me know here and I’ll jump it up the queue when we’re back online tomorrow.

      Thanks :)

Replies on this thread are closed. Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Get The Most Out of SiteOrigin with SiteOrigin Premium

Find Out More