Please help me fix this

  • Johnny Cache

    #36781

    I got it centered by adjusting the size of the image, which was slightly too large (although it was fine before).

    Now all I have to do is get rid of the semi-transparent bar at the bottom of the slider (which should be easy, if you know how), and making the image non-clickable (which Syahir said would be easy, but didn’t tell me how).

    Any takers?

    Anonymous

    #36782
    Quote:
    ..Now all I have to do is get rid of the semi-transparent bar at the bottom of the slider..

    Try adding this to Graphene Options –> Display –> Custom CSS.

    .featured_slider {
    background: none !important;
    margin-top: -25px;
    padding-bottom: 8px !important;
    }

    You may have to adjust margin and padding values.

    Or this, (whichever applies in your case)

    .slider-content-wrap {
    display: none;
    }

    Quote:
    ..and making the image non-clickable..

    Go to Graphene Options –> Advanced –> Custom <head> Tags and paste the below code there,

    <script type="text/javascript">
    jQuery(document).ready(function($){
    $('#slider_root').find('img').unwrap();
    });
    </script>

    Again, you have to give us the URL of your site. Each WordPress site is unique. One size fits all solution doesn’t apply here. If you don’t include link to your site, we just assume the default configurations and suggest you some solutions. By chance if it doesn’t work for you, you come back here and yell at the person who is trying to help you. So, please include link to your site while asking questions in any support forum.

    Johnny Cache

    #36783

    Thank you, this worked:

    Quote:
    .slider-content-wrap {
    display: none;
    }

    However, there is still a little white dot under the image. Hovering over it shows my domain followed by “/#”. Clicking it doesn’t do anything.

    This didn’t work, unfortunately:

    Quote:
    <script type="text/javascript">
    jQuery(document).ready(function($){
    $('#slider_root').find('img').unwrap();
    });
    </script>

    Any other ideas on how to make the slider image nonclickable?

    Quote:
    If you don’t include link to your site, we just assume the default configurations

    Well, that’s just it. It IS the default configuration, I haven’t made any modifications that haven’t been mentioned in this thread. There are also no plugins installed, etc. I have merely changed a few colors.

    Anonymous

    #36784
    Quote:
    This didn’t work, unfortunately:

    Okay, just add this to Custom CSS,

    .permalink-overlay {
    display: none !important;
    }

    Quote:
    …Well, that’s just it. It IS the default configuration,..

    Even though it is a default configuration, WordPress assigns an unique ID for each of your posts/pages/widgets etc., That’s why we need to see the site in question to give you the exact solution. For example, if I’ve had found out that you are using background image for slider earlier, I wouldn’t have given you the jQuery code. That just doesn’t work if the image is not being inserted with <img> tag.

    Johnny Cache

    #36785
    Quote:
    .permalink-overlay {

    display: none !important;

    }

    That did it! Thanks again.

    Now there’s just that annoying little dot. Do you know perchance how to get rid of it?

    Anonymous

    #36786
    Quote:
    Now there’s just that annoying little dot. Do you know perchance how to get rid of it?

    .slider_nav {
    display: none;
    }

    Johnny Cache

    #36787

    And that’s it!

    Thanks Prasanna!

    PS – I knew you wouldn’t need the URL, lol.

    Mod

    Kenneth John Odle

    #36788

    Yes, but he went through a lot more work than he needed to. If you expect to get help from a forum, you should at least read the forum rules first.

    Johnny Cache

    #36789

    Shut up, Kenneth.

    Mod

    Kenneth John Odle

    #36790

    That is rude and uncalled for. We are here to help you, but expect you to follow the rules of the forum. If this is to be your continued attitude, you are welcome to take your inquiries elsewhere.

Viewing 10 posts - 21 through 30 (of 34 total)

  • You must be logged in to reply to this topic.