Testimonials

  • Unknown's avatar

    Hi there

    Please can I get some css assistance with my testimonials

    is there a way to move the featured icon first, then the heading then the content

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I’m looking for css if available for featured images, the images on the front page are correct is there a way when clicked and opened onto the full page to have the images darkened as such with a overlay of some kind https://snag.gy/ku8h2J.jpg

  • Unknown's avatar

    Also not sure why my featured image is not displaying on the top of my blog page? Is there a reason for this?

  • Unknown's avatar

    Is there a way to hide the secondary menu from the top fly out when the primary menu is clicked?

  • Unknown's avatar

    is there a way to show the featured image thumbnail to my blog posts page as I do add featured images to each post but they don’t show up in any way on the main blog page – its just plain text

  • Unknown's avatar

    is there a way to make my 3 front page images and the 3 footer images the same size?

  • Hey, If I am not wrong, you can only edit your CSS code if you have any of the WordPress plans (personal or business). If you decide to upgrade, the community memebers or staff could be able to help you with a custom CSS, otherwise you can only make some changes to the theme.

  • Unknown's avatar

    If you have the Premium or Business upgrade http://wordpress.com/plans and use Custom CSS, you can opt to apply custom CSS to a WordPress.com theme.

    Note that Staff respond to all threads posted into this CSS Customization forum

  • Unknown's avatar

    @technotape, are you talking about this site https://technotape.co.za? If so, that site is not hosted here at WordPress.com. There is a dedicated Edin support forum at WordPress.org where you can post for help. These forums are for those hosted here at WordPress.com.

    I checked both the site you referenced, and also https://technotape.co.za, and see no testimonials. I activated Edin on my test site and when I looked at the Testimonials and the Testimonials on the Front Page Template, there were no icons.

    Are you using the Jetpack Testimonials, or are you using a different plugin to create the Testimonials?

  • Unknown's avatar
  • Unknown's avatar

    @technotape, thanks for the clarification.

    For the single pages after clicking through, the following will add an overlay to the featured image. The second CSS rule is needed to bring the page title out of the .hero div so that it isn’t overlaid. You can change the 0.4 alpha transparency/opacity value in the background-color declaration as desired. The closer to 1, the darker the overlay.

    body:not(.home) .hero.with-featured-image:after {
      content: "";
      background-color: rgba(0, 0, 0, 0.4);
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      top: 0;
      z-index: 1;
    }
    body:not(.home) .hero .page-title {
      position: relative;
      z-index: 2;
    }

    On the testimonials, I’m not seeing any on your site right now. The following should work, but given that I can’t see them on your site, I can’t make sure.

    .front-page-testimonials .hentry {
    	display: flex;
    	flex-direction: column;
    }
    .front-page-testimonials .hentry .post-thumbnail {
    	order: 1;
    }
    .front-page-testimonials .hentry .entry-content {
    	order: 2;
    }
    .front-page-testimonials .hentry .entry-header {
    	order: 3;
    }

    The blog page does not show a featured image. It will show a header image if you have one set at Customize > Header Image, but the header image would show on all other pages as well above the menu/title/search section.

  • Unknown's avatar

    For the secondary menu, are you not wanting to show it at all? Right now you are using the default menu, and the only time the secondary menu appears is when you click the menu toggle button. If you don’t want the secondary menu to show at all, then edit that menu and remove it from the secondary position.

    On the two posts you do not have a featured image set for those posts. You will need to set featured images for the posts and then also go to Customize > Content Options and select to display the featured images on blog and archive pages, and if you want, set it to show also on single posts. If you do not want to set featured images on posts, then you can also click on the Automatically use first image in post.

  • Unknown's avatar

    It looks like you got the front featured and widget area images the same width now.

  • The topic ‘Testimonials’ is closed to new replies.