Support » Theme: Duena » Can't change last bits of colour

  • sophie.crooks

    (@sophiecrookschtgmailcom)


    I love this theme and I’ve customised most of the colour on it to my own code so far but I cannot after over a week of searching figure out how to change the colour of tags, links and categories. Where are they hidden amongst the code, because I’ve gone through it a few times now changing it all, and can’t find any missed parts. What am I missing here?

Viewing 5 replies - 1 through 5 (of 5 total)
  • One way to check things on your website is to open it and right click on the thing that is troubling you. Then you go to inspect element. In this particular case, I think that the colour of the links is located in file named bootstrap.css. And bootstrap.css is on your server, you can’t access is from wp-admin. So you go to cpanel or whatever and change it there.

    If you look at my website you will see that I have changed a lot of the pink/red colors. I just want to change the last pieces and can’t find out where to do that at. I am on an ipad so can’t use firebug or Mozilla to help me out. Anyone know in which CSS these colors need to be changed? Especially the big bar across the top. Oh and the links. Thanks in advance.

    http://www.seizemysoul.com

    @sophie.crooks
    For Categories you can add

    post_meta .post_category a {
    color: #009933;
    }

    to your child theme css file
    For tags icon change color and add it to child css

    .post-footer i {
    color: #FF5B5B;

    For Tags

    .post-footer a {
    background: #835555;
    border: 1px solid #F40000;
    color: white;

    you can change colors above and add it to your child theme css
    For comments link add

    .post_meta .post_comment a {
    color: #2C2C2C;

    and change color to fit your needs
    If you want to comments and categories links into the same color then

    .post_meta a {
    color: #FF33CC;
    }

    will do just fine.

    @thatoneguy99
    If you want to change color of the main menu add this to your child theme css

    .main-nav .navbar_inner {
    background: #262626;
    }

    and change #262626 to whatever color you want, I presume #016969
    For submenus add

    .navbar_inner > div > ul ul, .navbar_inner > ul ul {
    background: #FF5B5B;

    and

    .navbar_inner > div > ul li li a, .navbar_inner > ul li li a {
    color: #FFF8ED;
    background: #FF5B5B;

    What about the red bar at the top? Any assistance there? Thank you.

    Got it!!! I had to put in this piece of code at the bottom of my style.css file. Maybe I deleted it at some point or something.
    .page-wrapper:before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background: url(images/page-top-bg.jpg) no-repeat center 0 #016969 !important;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Can't change last bits of colour’ is closed to new replies.