I again... as usual

)
1. I don't know if I understand corectly, but you can choose to center the navigation bar at Suffusion Options -> Other Graphical Elements -> Navigation Bar Below Header -> Drop-down menu position.
If you want just to move menu items a little to the right can add at Custom Styles:
- Code: Select all
#nav ul {text-indent:10px;}
The value of 10 px can be adjusted like you wish.
2.Somewhere in your Custom Styles you have that line (given by me sometime ago):
.entry {padding-top:0;margin-top:0;padding-bottom:0;margin-bottom:0;}. Prefix that line with class .page-id-25. In that way all the previous changes will be aplied just for Photography page. For ALL the rest of pages you will set a 5px padding before the definition for Photography page.
All the code that will replace the previous .entry definition will be:
- Code: Select all
.entry {padding-top:5px;margin-top:0;padding-bottom:0;margin-bottom:0;}
.page-id-25 .entry {padding-top:0;margin-top:0;padding-bottom:0;margin-bottom:0;}
Obviously you can adjust that 5px until suit with your needs... or can add also few pixels at padding-bottom if is needed...