-
AuthorPosts
-
May 13, 2014 at 11:36 am #263878
Hi,
We are using WP – triggers, to style that element we added CSS to the custom.css file.
But the changes are not happening. On what file permission should custom.css be?
Regards
May 13, 2014 at 11:53 am #263885I dont think the file permission is the problem.
Do you have a link to the site?Maybe the css from the wp-triggers has a higher priority.
Have you tried to use !important?.wptrigger{ height: 200px !important; }
May 13, 2014 at 11:58 am #263890Hi,
The website is behind a placeholder,
I am trying to add this code in custom.css:
.wptrigger {
background: #DEDEDE;
-moz-box-shadow: inset 0 0 10px #000000;
-webkit-box-shadow: inset 0 0 10px #000000;
box-shadow: inset 0 0 10px #000000;
border: 10px solid #B3B3B3;
font-size: 40px;
color: #13608E;
text-align: center;
font-family: “wf_SegoeUILight”,”wf_SegoeUI”,”Segoe UI Light”,”Segoe WP Light”,”Segoe UI”,”Segoe”,”Segoe WP”,”Tahoma”,”Verdana”,”Arial”,”sans-serif”;
padding: 100px 10px 10px 10px;
width: 300px;!important
}But nothing seems to change. Any ideas?
May 13, 2014 at 12:10 pm #263894sorry, i missplaced my “;”
it’s
width: 300px; !important
width: 300px !important;and you might have to use !important for everything. but you can first test it with width only
.wptrigger { background: #DEDEDE !important; -moz-box-shadow: inset 0 0 10px #000000 !important; -webkit-box-shadow: inset 0 0 10px #000000 !important; box-shadow: inset 0 0 10px #000000 !important; border: 10px solid #B3B3B3 !important; font-size: 40px !important; color: #13608E !important; text-align: center !important; font-family: “wf_SegoeUILight”,”wf_SegoeUI”,”Segoe UI Light”,”Segoe WP Light”,”Segoe UI”,”Segoe”,”Segoe WP”,”Tahoma”,”Verdana”,”Arial”,”sans-serif” !important; padding: 100px 10px 10px 10px !important; width: 300px !important; }
May 13, 2014 at 2:08 pm #263923Hi,
Thanks but no luck still.
Will have another look. File custom is set to 664
May 13, 2014 at 3:19 pm #263965 -
AuthorPosts
- You must be logged in to reply to this topic.