• The featured video on the right side of my blog is not working. I’m using kokona theme and there is a special place for featured video link on its settings. I copied the link there, but it still doesn’t show the featured video.
    My blog is: http://www.dervis-az.com

    Thanks beforehand.

Viewing 7 replies - 1 through 7 (of 7 total)
  • I’m not really familiar with the theme you’re using or how the feature box is set up.

    I can tell you though that the link that it is putting out is not correct. It’s trying to show http://www.youtube.com/v/http://www.youtube.com/watch?v=VEqW-gE6LMU&hl=en&fs=1&rel=0&border=1 which has it doubled up.

    Maybe try just pasting in the VEqW-gE6LMU part and see if that does it.

    Thread Starter Dervish-az

    (@dervish-az)

    wooowww, it worked at last! thank you so much! Can u believe that you helped me a lot?! 🙂 Thank you!
    Please, do not accept me like a bothering blogger, I need your valuable experience to help me with blog header, please.
    I would like to have “dervis” word with the bigger size on header, but I can’t find where can I do it? Could you please advice?
    thanks beforehand

    Happy to help!

    It looks like there should be an image in there, but it’s not showing up. Did you delete the image called logo.png?

    The logo image is most likely part of your header.php file.

    You’ll want to change that line to pull in the site title itself.

    You can do that by adding:

    <h1>
        <a href="<?php echo get_option('home'); ?>">
           <?php bloginfo('name'); ?></a>
       </h1>

    in its place.

    I hope that helps!

    Thread Starter Dervish-az

    (@dervish-az)

    great! you helped! thank you so much! Now it looks better 🙂 I could hardly find a genius and I need your advice regarding the design, do you think the header looks better or I need to change the font and style of “dervis” on the header? I am eager to hear professional’s advice 🙂
    Also, what about the categories above, do you think yellow color looks good?:) You know, when I put mouse on them in order to click they become yellow color. I could change their color when they are active but couldn’t change the yellow color. What is their html code? Thanks for brilliant advice! 🙂

    Great! I’m glad that this is helping you out so much.

    I think that the site title looks just fine as is.

    I would change the color of the site description, though. You can hardly see it as is.

    You’ll want to look for the #header h2 line in your style.css file. I would change the hex color from #7A7A7A to something a little darker like #333333.

    It would look like this:

    #header h2 {
        color: #333333;
        font-family: Arial,Helvetica,Sans-serif;
        font-size: 14px;
        line-height: 14px;
    }

    To change the color of the yellow, you want to look for the #nav li a:hover, #nav li a:focus, #nav a.mainMenuParentBtnFocused line in your MenuMatic.css file. If you change the hex color there to something else, it might look a little more in line with you site.

    This is what it would look like if you wanted it to be a nice gray:

    #nav li a:hover, #nav li a:focus, #nav a.mainMenuParentBtnFocused {
        background: none repeat scroll 0 0 #666666;
        color: #000000;
    }

    I think the yellow is pretty cool, though.

    Thread Starter Dervish-az

    (@dervish-az)

    Thank you so much for your brilliant advice! You are really helpful! The header works now, regarding to you! 🙂 Thank you.

    But I couldn’t change categories’ yellow color. Tell the truth I couldn’t find the codes. Here are the codes related to #nav:

    I kindly ask you to help me with yellow links please 🙂

    Thanks beforehand!

    #navcontainer {
    height: 42px;
    display: block;
    overflow: hidden;
    }

    #navcontainer .current-cat a {
    background: #673D70;
    color:#000000;

    /* wp-pagenavi */
    .wp-pagenavi a, .wp-pagenavi a:link, .wp-pagenavi a:active {
    font-size: 15px !important;
    padding: 4px 8px !important;
    color: #232323 !important;
    background:none !important;
    border: 0 !important;
    }

    .wp-pagenavi span.pages {
    font-size: 15px !important;
    padding: 4px 8px !important;
    color: #232323 !important;
    background: none !important;
    border: 0 !important;
    }

    .wp-pagenavi span.extend {
    font-size: 15px !important;
    padding: 4px 8px !important;
    background:transparent !important;
    color: #232323 !important;
    background: none !important;
    border: 0 !important;
    }

    .wp-pagenavi span.current {
    font-size: 15px !important;
    padding: 4px 8px !important;
    font-weight: bold;
    color: #fff !important;
    background: #3F2D43!important;
    border: 0 !important;
    }

    .wp-pagenavi a:hover {
    border: 0 !important;
    color: #fff !important;
    background: #393939 !important;
    border: 0 !important;
    }

    Ah. You’re looking in the wrong CSS file.

    You should be looking in the file called MenuMatic.css. It’s located in /wp-content/themes/Kokona/menu

    I hope that helps!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Featured video doesn't work’ is closed to new replies.