• I’m trying to do the following with this theme and can’t find where to make the changes:

    1. Top Nav Bar – with the exception of the Home tab, all other tabs only show up when you hover over them. How do i get them to show up automatically?

    2. Bar for Post Categories (right under header) – I want to change the color here from the grey to another color.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • There are currently more than 850 themes in the WordPress Themes directory. Most people aren’t intimately familiar with every one of them, so a link to your site would help…

    Thread Starter vbpartners

    (@vbpartners)

    I’m using the Zinrex theme and the site i’m working on is https://www.tomavery.com/wp.

    Thanks for your help.

    1. Try editing style.css and changing:

    #menu li.page_item a {
    color:#EDF51B;
    display:block;
    }

    to

    #menu li.page_item a {
    color:#180DF4;
    display:block;
    }

    2. style.css again. This time, you need to look for:

    #category {
    background:transparent url(images/categoryright.gif) repeat-x 0 0;
    border-bottom:1px solid #040404;
    border-top:1px solid #636363;
    height:30px;
    width:1000px;
    }

    The key line is the one that starts with background. Currently, the category navbar is using an image for its background but it could just as easily use a simple color – e.g.:

    background:#566747;

    will give you a darker green bar.

    That’s not really the problem. The zinrex theme doesn’t work in IE / internet explorer, because it breaks the top menu bar into two levels. One contains the background image, the other the menu items. In firefox it works properly. Install it on any test blog and check it in both browsers and you’ll see. Something’s wrong structurally with it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Zinrex theme – assistance needed’ is closed to new replies.