I need some changes for Full Frame

  • Unknown's avatar

    Hello,

    I’m new to ccs and have a Full Frame theme. Please help to make these changes.

    1. I changes the color of the main menu to white, but cannot change submenu color to match. Check Portfolio — Art.

    2. The color of the letters on the menu are grey. I want them to be a different color, say light blue. Especially, those social icons.

    3. When I go to individual posts, the featured image is acting like a background, yet it’s cut-off. How do I remove it from background and just keep it white?

    Thank you!

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Oh one more thing – I want to remove that frame surrounding the text on some of the pages. How do I do that?

  • Unknown's avatar

    Hi there,

    1. I changes the color of the main menu to white, but cannot change submenu color to match. Check Portfolio — Art.

    .main-navigation ul.main-menu > li:hover ul, .main-navigation ul.main-menu > li:hover > a, .main-navigation a:hover {
        background: #fff;
    }

    There is also a hover color on the “a” element of the submenus, and you can use the following to change that if you desire.

    .main-navigation a:hover {
    background: #66dd33 ;
    }

    2. The color of the letters on the menu are grey. I want them to be a different color, say light blue. Especially, those social icons.

    .main-navigation ul li > a {
        color: #33bbdd;
    }

    These will do the social

    li.facebook a:before {
        color: #33bbdd;
    }
    .site-navigation li.twitter a, .site-navigation li.facebook a, .site-navigation li.feed a, .site-navigation li.vimeo a, .site-navigation li.google-plus a, .site-navigation li.pinterest a, .site-navigation li.linkedin a, .site-navigation li.wordpress a, .site-navigation li.flickr a, .site-navigation li.youtube a, .site-navigation li.tumblr a, .site-navigation li.instagram a {
        background: #ddaa33;
    }

    3. When I go to individual posts, the featured image is acting like a background, yet it’s cut-off. How do I remove it from background and just keep it white?

    This will remove the featured header image from posts and pages.

    .single .has-featured-image header.entry-header, .page .has-featured-image header.entry-header {
        background-image: none !important;
    }
  • Unknown's avatar

    This is awesome! Thank you very much!

  • Unknown's avatar
  • The topic ‘I need some changes for Full Frame’ is closed to new replies.