mattb1234
Forum Replies Created
-
Forum: Plugins
In reply to: [Visualizer: Tables and Charts Manager for WordPress] causing footer errorHi
no still have the problem but i do have a compatibility issue with another plugin, am trying to get to the bottom of this, will let you know if this solves it
thanks
Forum: Plugins
In reply to: [Visualizer: Tables and Charts Manager for WordPress] chart backgroundok thanks
Forum: Themes and Templates
In reply to: THEMATIC font colour change menu and sidebarin your style sheet you have this:
.sf-menu li:hover, .sf-menu li.sfHover,
.sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
background:#fafafa;
outline: 0;
border-bottom-color:#ccc;
}change to:
.sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu a:hover, .sf-menu a:active {
background:#fafafa !important;
outline: 0;
border-bottom-color:#ccc;
color:#ff0000 !important;the above changes the hover color
the below changes the inactive coloryou have this:
.sf-menu a {
border-color:#CCCCCC;
border-style:solid;
border-width:1px;
padding:9px 13px;
text-decoration:none;
margin-left:-1px;
}change to:
.sf-menu a {
border-color:#CCCCCC;
border-style:solid;
border-width:1px;
padding:9px 13px;
text-decoration:none;
margin-left:-1px;
color: #67c9c8 !important;
}Forum: Themes and Templates
In reply to: THEMATIC font colour change menu and sidebarfor the top menu: in your style sheet you have:
.sf-menu li {
background:#fff;
}change to:
.sf-menu li {
background:#67c9c8;
}for the widget: you have:
.aside {
color: #fff;
text-decoration: #fff;
}change to
.aside {
color: #67c9c8;
text-decoration: #fff;
}Forum: Themes and Templates
In reply to: THEMATIC font colour change menu and sidebardo you have a link to look at
Forum: Themes and Templates
In reply to: [Alexandria] remove the words "Posted by: xx"find its class and add display none on your style sheet.
do you have a link i can look at for further detail?
Forum: Themes and Templates
In reply to: [Easel] change color of textgo through your style sheet and change the text colors there
Forum: Plugins
In reply to: [Theme My Login] Style Select FieldYou have the following code in your style sheet:
select {
width: 56%;
}you change the % to whatever you want or you can change to 100px or a size you like
Forum: Themes and Templates
In reply to: Do you know of a wordpress theme similar to this one!try these
Forum: Themes and Templates
In reply to: Similar theme to this one?Forum: Themes and Templates
In reply to: Similar theme to this one?try this support is excellent (im a buyer)
https://themeforest.net/item/volt-magazine-editorial-wordpress-theme/1044745
Forum: Plugins
In reply to: [Theme My Login] Eliminate "Register" link on the login page.just drop it in your theme style sheet.
try this instead
.tml-action-links {display:none !important; }
Forum: Plugins
In reply to: [Theme My Login] Eliminate "Register" link on the login page..tml-action-links {display:none; }
Forum: Plugins
In reply to: [Theme My Login] Cannot remove "Register for this site"put this in to your style sheet
.login p.message.register {display:none !important;}
Forum: Plugins
In reply to: [Theme My Login] design and style of the login formfor an exact match:
#user_pass1 {
width: 100% !important;
display: block !important;
font-size: 14px !important;
margin: 0px 0px 11px 0px !important;
padding: 5px 10px 5px 10px !important;
height: 40px!important;
-webkit-transition: all 0.2s linear !important;
-moz-transition: all 0.2s linear !important;
-o-transition: all 0.2s linear !important;
transition: all 0.2s linear !important;
}