Scaling Back Theme in Custom CSS and lose Images on Pages

Discussion in 'ColorWay WordPress Theme' started by 62415, Jan 24, 2015.

  1. 62415

    62415 New Member

    Joined:
    Jan 1, 2014
    Messages:
    13
    Likes Received:
    0
    Don't want the 4 images and dialogue boxes on Main Page

    www.Advantage4Seniors.com

    When I apply the CSS below ... some images on individual pages will up-load but
    Images Not Displaying on some pages ... and some do display on pages

    using in Custom CSS


    .content-wrapper blockquote {

    display:none;

    }

    .one_fourth p {

    display: none;

    }

    .one_fourth {

    width: 32% ! important;

    margin-right: 2% ! important;

    }

    div.columns div.one_fourth:nth-child(1)

    {

    display: none;

    }

    .content img {

    display: none;

    }

    #content .one_fourth h3 {

    display: none;

    }

    .content img {

    display: none;

    }
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,


    Delete above CSS and
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    blockquote.home_blockquote {
      display: none;
    }
    .one_fourth {
      display: none;
    }

    Thanks & Regards
    Pramod
     
  3. 62415

    62415 New Member

    Joined:
    Jan 1, 2014
    Messages:
    13
    Likes Received:
    0
    Thanks for the reply ... but it does solve what I want or don't want

    I DO NOT WANT:
    The 4 Feature Columns Images ... nor ... the 4 Feature Columns Headings ... nor ... the 4 Feature Columns Descriptions

    Also, I DO NOT WANT:
    Block-quotes

    Also, I DO NOT WANT:
    Slider Headings ... I want only ONE Slider Image (not sliding)

    If I Delete the above CSS, as you suggest ... I am back to square-one. I get everything back, that I don't want.

    QUESTION; Can I modify the appearance of this Theme to my desires ... And still DISPLAY New Images on New Pages I add???
    I have only one image working (on a page) so far

    Thanks
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.


    Code:
    .slide .slide-content.entry {
      display: none !important;
    }
    blockquote.home_blockquote {
      display: none !important;
    }
    .one_fourth {
      display: none !important;
    }
    Thanks & Regards
    Pramod
     

Share This Page