• Resolved ngquail

    (@ngquail)


    I have a Google Map plugin on one page of my site (http://northgeorgiaquail.com/quailblog/gun-dog-map) ..if at all possible I would like to have this map centered on the page.

    There is a centering option in the settings of the map….but it seems to be centering it in a box that is being controlled by the left margin.

    I know there is probly a css rule somewhere governing this, but I don’t want to change anything that will affect the entire site….just this one page.

    So, is there a way to center my map?

    TIA

Viewing 2 replies - 1 through 2 (of 2 total)
  • your site uses body_class() which outputs page specific css classes into the body tag;

    <body class="page page-id-146 page-template-default custom-background single-author singular two-column right-sidebar">

    you can use for example .page-id-146 in your css to make the margin adjustment page specific.

    example:
    .page-id-146.singular #content, .page-id-146.singular .entry-content { margin-left: 3%; width: 94%; }

    you will still get problems for viewers with narrow browser screens.

    Thread Starter ngquail

    (@ngquail)

    Wow….you are a Rock Star! It works perfectly!

    Thank you so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Margin override for a single page???? Is it possible?’ is closed to new replies.