Hi i am trying to modify base theme of statusnet. In the Display.css of base theme of status net for the div id
#header there is no entry like
#header {padding-top: 12px} but its showing in inspect element in Google Chrome. Please if anyone knows where its hiding tell me.
Thanks
Comments
And then on line 62 you will see the line you are looking for.
#header {
padding-top: 12px;
}
I suggest that you create a new theme and then copy all the files in the theme that you are using into that folder and then modify the theme and then make that theme default, using this code in your config.php file
$config['site']['theme'] = 'your-theme-name';
Hope that helps.