changing menus on chunk theme

  • Unknown's avatar

    1. Did you create the table for the images? It appears like you did.

    2.

    .entry-content tr td {
    vertical-align: top;
    }

    3. It appears like you solved this one.

    4.

    .menu-item {
    text-align: left;
    }

    5.

    .embed-youtube {
    text-align: left !important;
    }

    6. Not sure what you are asking on this one.

  • Unknown's avatar

    Thanks

    1. Yes I created a html table for this an put in pictures. The pictures are all the same sizr (I photoshopped them). However, the pictures don’t always align to the top of the box and I am wondering the best way to do this?

    2. Fixed, ta.

    3. I haven’t fixed that. I have put in CSS code to get rid of the boarder around images. However, if there is an image with a caption it appears like the link below. I’m wondering how to get rid of the white box and to just have the text.
    http://ladyelectronica.wordpress.com/test/

    4. Thanks for this. That makes the text align left instead of right, but the tabs of the drop down menu (i.e. the grey box around the words) still seems to line up with the end of the word on the main menu, instead of the beginning. Is there a way to fix that?

    5. Fixed cheers!

    Thanks again for your help.

  • Unknown's avatar

    Hmm also, with the 6th thing.

    I’m trying to create two links to AUDIO and VIDEO that appear in the content part of wordpress i.e. in the part that says “Visual” rather than on a menu

    I’d like to create that link in text, rather than with a pictures. Not sure how else to explain this one :-)

  • Unknown's avatar

    3. This will get rid of the grey background on the image and caption.

    .wp-caption {
    background: none;
    }

    4. Give the following a try. The problem is that the alignment is set with position absolute and a “right” declaration, and it is difficult to override a “right and make it a left. Internet Explorer 8 and newer should be fine with this, but IE7 will not (its browser market share though is well under 5% right now though so not too much to worry about).

    #menu ul ul {
    left: 0 !important;
    right: inherit;
    }

    6. For the links, replace your existing linked images with the following (paste into the HTML editor):

    <p class="padding" style="font-family: 'Oswald',Helvetica,Arial,sans-serif; font-size: 25px;"><a href="http://ladyelectronica.com/music/audio/">Audio</a></p>
    <p class="padding" style="font-family: 'Oswald',Helvetica,Arial,sans-serif; font-size: 25px;"><a href="http://ladyelectronica.com/music/video/">Video</a></p>

    The above fonts and sizes are the same as the “music” page title above the current images. You can adjust the font size as you see fit, and also change the font stack as well if you wish.

  • Unknown's avatar

    That’s done it, thanks a million.

  • Unknown's avatar
  • The topic ‘changing menus on chunk theme’ is closed to new replies.