I will try using firebug from now on. The code that you outlined didnt refer to the "entry-content-modified" that I created? I will try what you said, I am fairly new to this as well :) but it is fun for sure.
also just to clarify, this is what the code looked like before I modified
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', hybrid_get_textdomain() ), 'after' => '</p>' ) ); ?>
</div><!-- .entry-content -->
this is what it looked like after I modified, note the changes in bold
<strong><?php if ( is_page('AZ Music') ) { ?>
<div class="entry-content-modified"
<?php } ?></strong>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<p class="page-links">' . __( 'Pages:', hybrid_get_textdomain() ), 'after' => '</p>' ) ); ?>
</div><!-- .entry-content -->
Now i definetly don't know what I am doing but I can tell you that this removed the padding, I created the entry-content-modified CSS in the style.css file. The only issue is I have inserted an excel table in the page and by doing this it removed all table properties. No borders to the table or anything else which I wanted to keep. All I wanted was to get rid of the padding. I will play around a bit more with what you said and maybe I can stumble upon something else. I will start using firebug and make a css based on the .singular-page-991
like you said. Thanks for the help.
[Moderator Note: Please post code or markup snippets between backticks or use the code button.]