Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #62042
    Alexander
    Member

    Removing “Posted on by WeekendPick – Leave a Reply”

    Thank you so much for your help on my last question. Wondering if you can help me with three more items. These questions pertain to the site WeekendPick.com.

    1) Is there a way to remove “Posted on by WeekendPick – Leave a Reply” on the Homepages and Category pages.” Also once removed I have a feeling the line spacing will be off from the “Post Title” and the “Description Text.” Is there a way to fix that if its a problem?

    2) For the homepage slider is there a way to make it full screen to fit 100% across any screen size? Right now it cuts out at 1600px wide.

    3) Is there a way to make the Category Header text larger. For example on Page (http://weekendpick.com/boston/lounges/) it would be great to make the text “WEEKENDPICK: LOUNGES” as large as the title text size.

    #62104
    Sakin
    Keymaster

    @Alexander:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box to hide entry meta in Homepage and category pages:
    .home .entry-meta, .archive .entry-meta { display: none; }

    Then to reduce the space between title and excerpt content, you can add the following css:
    .home #content .entry-title, .archive #content .entry-title { padding-bottom: 0; }

    Then if you further want to reduce it then you can change the padding top in the following css and add it Custom CSS box:
    .entry-summary { padding-top: 20px; `}

    2. You can add the following css in “Appearance => Theme Options => Custom CSS” box
    #main-slider img { width: 100%; }

    3. For that, you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    .page-title { font-size: 30px; line-height: 1.3em; }
    @media screen and (max-width: 940px) {
        .page-title {
            font-size: 24px;
            line-height: 1.2;
        }
    }
    @media screen and (max-width: 640px) {
        .page-title {
            font-size: 20px;
        }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Removing "Posted on by WeekendPick – Leave a Reply"’ is closed to new replies.