Illustrator Theme

  • Unknown's avatar

    Hi there!

    I’d like to customize some aspects of the Illustrator theme on WordPress. However, the simple edit tab does not allow me to customize these things.

    First I want to remove the small box that appears over a portfolio post when you scroll over the post. I don’t want that box to appear at all.

    Second I’d like to change the color of the main navigation page from white to black and change the text throughout the blog from black to white.

    I’ve tried several CSS codes but it doesn’t seem like my changes are working out.

    Could someone help me out please?

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

  • Unknown's avatar

    Hi there, I see you have hidden the box on the images and also changed the text color of the navigation.

    Since you have a light color background on your site, do you mean change the light colored text to black? If so, add the following CSS.

    body, button, input, select, textarea {
    color: #000000;
    }
  • Unknown's avatar

    Hi there,

    I’m a bit confused. Seems like the box image still appears on images concerning posts. i want the text background to be black and the actual text to be white. When I imputed the above CSS it did not update the website.

    Could you please advise

  • Unknown's avatar

    Perhaps I’m confused. When I looked at your site originally, the boxes were not showing over the posts on your main page, and there was custom CSS, but I’m not seeing that custom CSS now.

    Do you want the entire white area behind all of your content to be black with white text?

  • Unknown's avatar

    yes! I want all of the white area to be black and the text to be white.

    sorry for the confusion i was still trying to see what CSS would make this work for me.

  • Unknown's avatar

    Ok, let’s start with this then.

    body, button, input, select, textarea, .site-title, .site-description, .main-navigation a, .page-title a, .entry-title, .entry-title a, .site-main .portfolio-entry-meta {
        color: #fff !important;
    }
    body.custom-background, #page, .site-footer {
        background-color: #000;
    }
    .page-header::after, .entry-header::after {
        background: #fff;
    }
  • Unknown's avatar

    yes this is perfect. thank you so much !

  • Unknown's avatar

    Hooray and you are welcome.

  • Unknown's avatar

    i just have two more questions.

    is there a way to remove the grayish black box that appears over the tile for a post?

    also the menu dropdown for the portfolio page has items in white text over a white background. how can i correct that, so that viewers can see the menu items?

  • Unknown's avatar

    The following will remove the box/border effect on hover.

    .portfolio-thumbnail a:hover::before, .portfolio-thumbnail a:focus::before, .portfolio-thumbnail a:active::before {
        opacity: 0;
    }

    Sorry, I didn’t notice the background on the submenus. Add the following to change the background color to black. If you want it a different color, you can edit the color code.

    .main-navigation ul ul {
        background-color: #000;
    }
  • Unknown's avatar

    this looks perfect. thank you so much for all of your help.

  • Unknown's avatar
  • The topic ‘Illustrator Theme’ is closed to new replies.