Cindy Vriend
Forum Replies Created
-
Forum: Plugins
In reply to: [WP FullPage] When assigned as front page it stops workingnever mind, i’ve figured it out. Was a setting in the enfold theme… nothing to do with the plugin…
I’ve registered and connected my envato account but I still get to see: Sorry, support is offered to verified buyers only. I’m not sure… but I got the masterslider plugin with the Oshin wordpress theme….
does that still make me a verified buyer?? If yes, how do I access the forum then?Forum: Themes and Templates
In reply to: [ProfitMag] Change colors of Navigation, Sidebar, Footer etc..wrapper {
background: #000000;
}body {
color: #FFFFFF;
}this will change your background to black and your text to white.. If you want other colors just change the #000000 or/and #FFFFFF to the colors you want
Forum: Themes and Templates
In reply to: [Jester] Hide author and dateNo worries @stephencottontail and @lklawless glad I could help a little ??
Forum: Themes and Templates
In reply to: [Jester] Hide author and dateyou could also add this:
.entry-meta li:before, .posted-on li:before {
display:none;
}that will remove the bullets in front of the text and move the text up
Forum: Themes and Templates
In reply to: [Jester] Hide author and datethis will make the text invisble… but it doesn’t mean the other links will move up automatically…
#primary .entry-meta .posted-on {
display: none;
}#primary .entry-meta .author {
display: none;
}you could also remove the declarations to them in the php file.. are you working with a childtheme?
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Primary sidebar image paddingI think this should work?
@media all {
.widget {
margin-bottom: 48px;
}
}then adjust the 48px to your needs
Forum: Themes and Templates
In reply to: [Adamos] Change color of title barput this in your CSS
#masthead-wrap, .header_container {
background: #000000;
}change the #000000 to the colour you want
Forum: Themes and Templates
In reply to: [Jester] Hide author and dateHi you can put this code in:
#primary .entry-meta {
display: none;
}Forum: Themes and Templates
In reply to: [Sparkling] Sparkling Sidebar not showingwhen you go to customize and then choose widgets it says:
sidebar
footer widget 1
footer widget 2
footer widget 3just click on sidebar and add widget (don’t forget to press save after you’ve added the widgets)
Forum: Themes and Templates
In reply to: Customize Drop-down Menu Height ProblemHi there, can you try to put this in the custom css:
.main-navigation ul ul li {
height: 20px;
}then adjust the height to the size you need…
Forum: Themes and Templates
In reply to: [ProfitMag] Change colors of Navigation, Sidebar, Footer etc.If you mean to change the white background on your homepage to black put this in the custom css:
.wrapper {
background: #000000;
}then of course you have to change the color of your text to something else then black ??
Forum: Themes and Templates
In reply to: [ProfitMag] Change colors of Navigation, Sidebar, Footer etc.I don’t understand what you mean change it from white did you already customize it as in my theme its black.. but anyway if you want to change the body color just put this in your custom css box (theme options >> tools)
body {
color: #000000;
}(change the #000000 to whatever color you need)
Forum: Themes and Templates
In reply to: [Onetake] change menu colorIn the dashboard go to appearance > theme options
Then select the tab that says: General settingsYou will see link color and link mouseover color
that’s where you can change it ??
Forum: Themes and Templates
In reply to: [Hueman] Change opacity of main contentdo you have a link to your site? It makes it easier to give feedback ??
I know for the header for example you can add: opacity: 0.4;
(then change the 0.4 to an amount you prefer)#header {
background: #33363b;
opacity: 0.4;
position: relative;
padding-bottom: 60px;
}