• Resolved Hercal

    (@hercal)


    hi , i am new to wordpress , i install a theme called PR Pin ,
    i need to change menu bar color , also need to reduce white space in header , i open style.css but i can’t reach the class of my menu .
    also as per another topics i search for #access but it is not exist .
    any idea ?
    i need to customize my theme in easy way .

Viewing 4 replies - 1 through 4 (of 4 total)
  • There might be another CSS file for design you’re trying to modify. Install “Firebug” plugin in your browser and right click on the element you want to change and click “inspect element using firebug”. From there you can find out which CSS file has the coding you want to change. Even you can try changing your design from there if it works and later on you can make modification on actual CSS file.

    I hope it helps.

    Cheers 🙂

    Thread Starter Hercal

    (@hercal)

    i use developer tool in chrome , thanks 🙂

    You should not edit style.css because this file will be overwritten by the next theme update. Instead you should enter any custom css at Admin page > Appearance > Theme Options > Basic tab > Custom CSS box.

    Elements can have more than one class name, or they could inherit their properties from ancestor elements, so you may not always find a particular class name in the style sheet.

    To alter the menu bar colour, try this in your custom css:

    .navbar {background:#F00}

    The white space in the header comes from the top and bottom margins of the .site-title and .site-description elements.

    .site-title {margin-top:2px; margin-bottom:2px}
    .site-description {margin-bottom:2px}

    I can’t find an element with id=”access”. Do you have a url for the page its on.

    Thread Starter Hercal

    (@hercal)

    thanks , i used my custom css plugin ,works fine

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘PR Pin Theme Editing’ is closed to new replies.