• Hello, I am new to WordPress. I am having a few issues with images in my theme. I have already made a child theme and added stuff to it.

    My website is: http://thewisenerd.com/

    Issue 1: When you visit the site and go to the second and third slider pictures, the background has lines. The image is a png and the actual image background is transparent. How do I make the background that it shows just white?

    Issue 2: If you go to the bottom of any page (for example: http://thewisenerd.com/showdown-who-v-taliban/) you can see the individual tags. How do I make those disappear. I think there was a button, but I cannot find it now.

    Issue 3: If you go back to the slider and the second slide (its the one about polio) is left aligned. I want to right align it because you cannot see the picture. I do not mind that the picture is cropped, I just want to right align it and every future featured slider image.

    Thank you for any help.

Viewing 10 replies - 1 through 10 (of 10 total)
  • Moderator t-p

    (@t-p)

    – what theme are you using?
    – are you using plugin for your slider or is it a builtin feature in your theme?

    Thread Starter thewisenerd

    (@thewisenerd)

    Hey! Sorry I forgot to add that.

    Theme: Twenty Fourteen
    Slider: I’m pretty sure this is a built in feature.

    I have added some code already to change the slider:

    /*----------Resize Slider Start----------*/
    @media screen and (min-width: 673px) {
    	.slider .featured-content .hentry {
    		height: 400px;
    	}
    }
    
    .wp-post-image, .post-thumbnail img {
    	height: auto;
    	width: auto;
    }
    
    /*----------Resize Slider End----------*/

    Moderator t-p

    (@t-p)

    I have added some code already to change the slider:

    1. I hope you are working with a Child Theme.

    2. try switching to the unedited default Twenty Fourteen Theme for a moment using the WP dashboard to rule out any theme-specific issue.

    If a fresh, unedited Twenty Fourteen works, then you know that the problem is with your customizations

    Thread Starter thewisenerd

    (@thewisenerd)

    1. I am working with a child theme.

    2. I did. The problem still persists. Also, I’ve seen this issue in other sites, too. So I do believe it is a theme problem… or maybe a very popular plugin?

    Moderator t-p

    (@t-p)

    – Try deactivating ALL plugins temporarily to see if this resolves the problem. If this works, re-activate them individually (one-by-one) to find the problematic plugin(s).

    Thread Starter thewisenerd

    (@thewisenerd)

    The issue still persists. Is there any code that could target those images?

    Thread Starter thewisenerd

    (@thewisenerd)

    I’m still having these issues. Anyone know what to do?

    In your child theme CSS, apply a background color to your slider:

    .slider-viewport {
        background-color: #fff;
    }
    Thread Starter thewisenerd

    (@thewisenerd)

    Thank you so much!!!! That worked. 😀

    Now I’m trying to resolve issue #3. How do I make the image go to the right?

    I tried both of the following codes. Didn;t work:

    .slider-viewport .featured-content {
    	padding-right: 0;
    }
    .slider-viewport .featured-content {
    	float: right;
    }
    Thread Starter thewisenerd

    (@thewisenerd)

    Issues still persisting. Any help?

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Twenty Fourteen – Image Issues’ is closed to new replies.