• Hi i use a theme i got from wordpress themes page

    i love it and have been using it for about a year now
    its mostly white and am trying to change a few colors
    i dont know any css is there a easyer way for me to mod the colours?

    Thanks alot

Viewing 9 replies - 1 through 9 (of 9 total)
  • If you simply want to change some of the colors that CSS should be simple. You just need to find an element that you want to change the color of, figure what rule is setting the color, and then just change the value.

    You could also just do a find and replace. So if all of your links are red and you want them to be blue you could open style.css and find/replace a value with the new one.

    Here is an article on finding the right element in your HTML, Firebug makes this a lot easier.

    Thread Starter animemike

    (@animemike)

    Thanks mate i used firebug and found the css value and changed it but it still shows my old colors

    Remember to press CTRL and F5 simultaneously when viewing an updated page/site. Or try emptying your browser cache. This should ensure that your web browser fetches a fresh copy of the page rather than serving up an out-dated copy from your own cache.

    Thread Starter animemike

    (@animemike)

    yes mate hehe i have cache refreshed
    Thanks

    Hard to say what could be causing the color to stick, might be more than one rule on that element. Could you post a link to the site you are working on, and what you are trying to change?

    Thread Starter animemike

    (@animemike)

    Hey
    https://www.myanimeisland.com/
    Thanks alot for the help

    No problem Mike, what specific element are you have trouble changing the color of?

    Thread Starter animemike

    (@animemike)

    background is a good start i guess, there is a few bits am trying to do

    Thanks again

    It looks like you don’t just have a single stylesheet, there is some CSS hardcoded into your theme files too?

    Is there something that looks like this in your header.php file?

    <style type="text/css" media="all">
    body { background:#636566 url("https://www.myanimeisland.com/wp-content/themes/eximiusBlack/images/background.gif") repeat-x; }
    #header { background: url("https://www.myanimeisland.com/wp-content/themes/eximiusBlack/images/newmai.jpg") no-repeat ; }
    #header { height: 250px; }
    </style>

    Any CSS in your template files would override the CSS in your stylesheet, so I think that is the problem.

    If you can find that code above in your header file, you could edit it there to make the change actually show up. However, there is a background image and color, so the image will cover up the color. You either need to change both or remove the image and just set a color for the background.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Theme colour’ is closed to new replies.