Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #46903
    boosted179
    Member

    One of my images for my featured content has a transparent background and rounded edges. It displays fine, with the rounded edges, except there appears to be a border around the normal square shape of the image. I’ve looked up and down the page and the css and cannot find what would be the cause (I’d like to remove the border or drop shadow or whatever it is).

    Thanks!

    #46920
    Sakin
    Keymaster

    @boosted179: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    .featured-image img, .entry-content img {
        box-shadow: none;
    }
    #46940
    boosted179
    Member

    @Sakin

    Thanks for your response, but this didn’t seem to solve the issue. I’ve included a picture of the issue (since the website is not currently live and linkable). Hopefully this helps!

    featured content image border

    #46943
    Sakin
    Keymaster

    @boosted179: It’s difficult to check it when your site is not live. Also it will be better if you could send me your site screenshot not just image screenshot. I don’t know where this image came from.

    Ok can you try the following css:

    #featured-post img, #main-slider img {
        box-shadow: none;
    }
    #46966
    boosted179
    Member

    @Sakin

    Thanks for your guidance, I was able to fix my particular issue by utilizing the follow CSS chunk

    #featured-post .wp-post-image {
    	box-shadow: none;
    }
    #46969
    Sakin
    Keymaster

    @boosted179: Ok that’s nice.

    #47258
    michalahulme
    Member

    Hi Sakin,
    I contacted you via Twitter I am trying to change the blue colour on a charity website that I created called http://www.dogshome.net Can you help?

    #47273
    Sakin
    Keymaster

    @michalahulme: Thanks but I am not sure which section you have to change. There are lots of blue in your site. So, if you could list the places where you want to change the color then I can send you the custom css.

    Also check out Pro version, where you have all options to change color. See the additional features details at http://catchthemes.com/theme-instructions/catch-kathmandu-pro/

    #47275
    michalahulme
    Member

    Hi Sakin,
    Thank you so much for getting back to me. I would love to purchase the pro version but I volunteer for a charity so its out of the question at the moment. The charity is Manchester Dogs Home (we were destroyed by a fire a few weeks ago and we lost 50 dogs). Anyway, I need to change the blue menu bar, the blue bit at the bottom where the widgets are and the blue square which has the info for the main slider image on the home page. Please can you help. Thanks 🙂
    http://www.dogshome.net

    #47332
    Sakin
    Keymaster

    @michalahulme: Sorry about the lost and I will try to answer it.

    1. Not sure about the menu much. So, can you try to change the background color and color as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    #secondary-menu ul.menu li:hover > a,
    #secondary-menu ul.menu a:focus,
    #secondary-menu .menu .current-menu-item > a,
    #secondary-menu .menu .current-menu-ancestor > a,
    #secondary-menu .menu .current_page_item > a,
    #secondary-menu .menu .current_page_ancestor > a {
    	background-color: #1b5F7d;
    	color: #fff;
    }

    2. For slider content, change the background color and color as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    #main-slider .entry-container {
    	background: none #21759b;
    	color: #fff;
    }
    #main-slider .entry-container:hover {
    	background: none #21759b; 
    	color: #fff;
    }

    3. For footer sidebar, change the color as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.
    #footer-sidebar {
    background-color: #21759b;
    }

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘featured content image border’ is closed to new replies.