Changing background in gallery

Discussion in 'Local Business WordPress Theme' started by rcsnoopdog, Jun 9, 2013.

  1. rcsnoopdog

    rcsnoopdog New Member

    Joined:
    May 28, 2013
    Messages:
    15
    Likes Received:
    0
    Can i change the background in the gallery & change it to a different colour or an image & can i remove the text in pic

    [​IMG]
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    1). For the gallery background issue,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .gallery {
    background: red;
    }
    Inplace of "red" you can put your color or color code.
    2). For the page title text issue,
    Go to the template-gallery.php file present in your Theme directory and remove the code given below from that file.
    Code:
     <h1 class="page-title"><?php the_title(); ?></h1>
    See the image for reference
    [​IMG]
    This will solve your issue.
     
  3. rcsnoopdog

    rcsnoopdog New Member

    Joined:
    May 28, 2013
    Messages:
    15
    Likes Received:
    0
    Will removing this affect my seo i any way
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Yes, it will affect on your seo, Undo your above customization and

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .page-heading {
    display: none;
    }
    It will remove your page heading from your page and does not effect on your seo.
     

Share This Page