• Hey, I’ve been looking all over the net and couldn’t find anything that made sense regarding my questions, so I hope I will find the answers here.

    – How do I CHANGE the title-text from Italic to normal?
    – How do I DELETE the green box over the flags?
    – How do I CHANGE the color of (Recent post & Recent comments) boxes?

    The site: Habusio.com

Viewing 8 replies - 1 through 8 (of 8 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Are you using a Child Theme, or Custom CSS/Styles plugin?

    Thread Starter Roitduck

    (@roitduck)

    I’m using the standard CSS/Styles

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    I don’t know what that means, is that a plugin?

    Thread Starter Roitduck

    (@roitduck)

    the only plugins I have downloaded is the (share and translate-plugin) so i don’t think i have a child theme or CSS/Styles.

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Okay. If you need to make modifications that aren’t available through the theme’s dashboard, you should do-so within a Child Theme, or a Custom CSS Manager plugin. Otherwise changes you make will erase whence the theme updates.

    Thread Starter Roitduck

    (@roitduck)

    Okay, I have installed Custom CSS Manager plugin. but where do I find the codes or what should I do?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Try using a Browser Inspector Tool to find which CSS is currently applying to your page elements. Then override that CSS, or add to it within your Child Theme.

    How do I CHANGE the title-text from Italic to normal?

    I can’t see any text in italic.

    How do I DELETE the green box over the flags?

    I can’t see the green box over the flags, do you mean behind the title, “Recent post”?

    How do I CHANGE the color of (Recent post & Recent comments) boxes?

    Colour of the text?
    Use;

    #secondary aside.widget .widget-title {
     color: red;
     /*OR hexadecimal value*/
     color: #ff0000;
    }

    Colour of green background?
    Remove the background image and apply background-color;

    #secondary aside.widget .widget-title {
     background-image: none;
     background-color: #ff00ff;
    }

    Thread Starter Roitduck

    (@roitduck)

    Try using a Browser Inspector Tool to find which CSS is currently applying to your page elements. Then override that CSS, or add to it within your Child Theme.

    My page does not work in Chrome anymore? – I accidentally deleted some of code in google developer tool :O

    I can’t see any text in italic.

    – The blue text in the middle of the page.

    I can’t see the green box over the flags, do you mean behind the title, “Recent post”

    – Do you have a mail, so I can send you a sreenshot?

    Can I copy and paste this in the Custom CSS Manager plugin?

    `Colour of the text?
    Use;
    #secondary aside.widget .widget-title {
    color: red;
    /*OR hexadecimal value*/
    color: #ff0000;
    }
    Colour of green background?
    Remove the background image and apply background-color;
    #secondary aside.widget .widget-title {
    background-image: none;
    background-color: #ff00ff;
    }

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How to change the text from Italic’ is closed to new replies.