Reply To: Welcome Wide text colour change

Homepage Community Forums Epik Theme Support Welcome Wide text colour change Reply To: Welcome Wide text colour change

#15547
Wes
Moderator

    Which text/code are you trying to add? Regular text seems to work, but hyperlinks and titles are showing up as white because of the code that you added around line 3655 –

    
    .epik-magenta .head-wrap,
    .epik-magenta .welcome,
    .epik-magenta .home-feature-bg-dark,
    .epik-magenta .author-box,
    .epik-magenta .footer-widgets {
    	background: #b70072;
    	color: #eee;
    }
    
    .epik-magenta .head-wrap a,
    .epik-magenta .welcome a,
    .epik-magenta .home-feature-bg-dark a,
    .epik-magenta .author-box a,
    .epik-magenta .footer-widgets a {
    	color: #fff;
    }
    
    .epik-magenta .head-wrap p,
    .epik-magenta .welcome p,
    .epik-magenta .home-feature-bg-dark p,
    .epik-magenta .author-box p,
    .epik-magenta .footer-widgets p {
    	color: #eee;
    }

    .epik-magenta .welcome, 1st section
    .epik-magenta .welcome a, 2nd section
    .epik-magenta .welcome p, 3rd section

    Remove those and then the default Welcome code will be used (located on line 1266) –

    .welcome h4 {
    	color: #fff;
    }
    
    .welcome p {
    	color: #ccc;
        margin: 0 0 20px;
    }
    
    .welcome a {
    	color: #fff;
    }

    You can do it that way, or you can keep the lines of code in the magenta section you created and just separate the hyperlinks, titles, p tags, etc and just add your edits/colors from there.