Title background-color

Home Forums WordPress Themes – Premium Pure & Simple Title background-color

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #17145
    Lars Hærvig
    Participant

    Hi,
    I would like to set the title background-color to transparent. (to see the header picture)

    The same goes for the Site-tagline

    Ste: http://nedikroppen.dk

    #22599
    Sushil Adhikari
    Moderator

    Hi there,

    if you want to remove background image of site title then please add this css on child theme style.css file.

    .site-info {
        background: none !important;
    }

    OR
    If you want to place background image with transparent site title background then add this css

    .site-info {
        opacity: 0.9;
    }

    Feels free to ask a question for further information, we will more than glad to assist you.

    Thanks

    #22601
    Lars Hærvig
    Participant

    Hi sushil,

    Not working.
    Apparently the element.style overrides the new setting. Se attached screendump

    I have tried ths:

    .site-info {
    opacity: 0.9;
    }

    and

    .site-info.fade-logo {
    background-color rgba(255, 255, 255, 0.13);
    }

    Regards
    Lars

    #22602
    Sushil Adhikari
    Moderator

    Hi Lars Hærvig,

    Thank you for your response, as you given background color on rgba values @SEE http://www.w3schools.com/cssref/css_colors_legal.asp , so it is overwriting the opacity property.

    Let us know if this answered your question.

    Thanks

    #22604
    Lars Hærvig
    Participant

    Hi sushil,

    Thanks for your quick answer, but the problem is not the rgba() property – the opacity property you suggested is overwritten as well by the element.style property witch default to #FFFFFF or any color set in the theme settings. (the fact the opacity property is overwritten is the reason that i tried the rgba() instead)

    I have now modified the /partial/logo-group.php to my needs. Are there any way to do this in the child theme instead of ind the “master”

    A solution could be that you modify the “check color value” to accept transparent as an option to select in the admin section…

    #17146
    Sushil Adhikari
    Moderator

    HI Lars Hærvig,

    I hope you had got answered of your queries , happy for you on this.

    It seems you want to customize parent template on child theme, then please follow this steps:

    1> First create partial folder inside child theme [Go to site folder -> wp-content -> themes -> puresimple-child-> create partials folder]
    2> Create file named logo-group.php and paste your code on this file from parent file. for this [Go to site folder -> wp-content -> themes -> puresimple-> partials -> logo-group.php]
    3> Then you can re-undo your changes from parent theme.
    4> finally activate your child theme.

    Note: A child is just inherits page template but you need re set the setting or value of customizer

    Let us know if you are understanding fully or perhaps this not what you meant for.

    Thanks.

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.