• I have tried editing the bootstrap css file by adding the following code per another post in the support forum and this hasn’t worked

    a {
    color: #333;
    }

    I tried editing the stylesheet in the Editor as well.

    Where exactly ahould this code should be modified or added.

Viewing 5 replies - 1 through 5 (of 5 total)
  • What is your URL?

    In your Child Theme or CSS Editor Plugin try this code:

    a {
        color: #009900;
    }
    
    a:hover {
        color: #ff0000;
    }

    Just edit the green and red colors I used.

    *Note
    If your theme has a custom CSS Editor in it, you can also paste the code in there.

    Never edit core CSS or PHP files, they’ll be deleted when the theme is updated.

    Thread Starter admusic11

    (@admusic11)

    Thanks, haven’t done this in a while. Forgot about creating a child theme.

    http://www.music.angeladrago.com

    Thanks!

    Thread Starter admusic11

    (@admusic11)

    I created a child theme, when I went to activate it says the theme is broken and the template is missing.

    Here is my style.css

    /*
    Theme Name: Solon Child
    Theme URI: http://athemes.com/theme/solon-child
    Author: Angela Drago
    Author URI: http://www.music.angeladrago.com
    Description: Solon is a fully responsive theme, ideal to use if you want your blog to have a slick and modern look. Some of the features that are packed in this theme include: custom logo upload, custom favicon upload, color changing for various elements, including the primary and the secondary color, integration with FontAwesome, about 20 of the most used Google Fonts, option to change the layout from content-sidebar to sidebar-content, css transitions, custom scroll effect and design etc.
    Version: 1.04
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Text Domain: solon
    Domain Path: /languages/
    Tags: orange, light, two-columns, left-sidebar, right-sidebar, fluid-layout, responsive-layout, custom-colors, custom-background, custom-menu, featured-images, sticky-post, theme-options, threaded-comments, translation-ready

    Solon is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.
    */

    a {
    color: #2A363B;
    }

    a:hover {
    color: #cccccc;
    }

    Here is my functions.php

    (<?php)

    add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
    function theme_enqueue_styles() {
    wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );
    wp_enqueue_style( ‘child-style’,
    get_stylesheet_directory_uri() . ‘/style.css’,
    array(‘parent-style’)
    );
    }

    If you’re just going to edit CSS I would just go with a CSS Plugin like the one I provided above instead of a Child Theme.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘change blue link color in Solon Theme’ is closed to new replies.