Hi ilonkaschutte
If you don’t already have a Child_Themes or a custom.css you should install a plugin like custom CSS plugin then add the css to the custom css area.
Hi salsaturation,
thanx for your response.
Usually I use the CSS that comes with the theme to make a child, and then alter the CSS where I want. But this theme has no CSS sheet that I can alter or copy, which makes it very difficult to change stuff. I mean, e.g. I want to alter the background-color of the main container. But some call it “container”, others call it “wrapper”. So how would I know how and what to change?
Hi ilonkaschutte
This I think is coming from the them custom area
body.custom-background {
background-color: #444444;
}
and this is coming from assets/dis/all.min.css
.content-wrapp {
background: url(../img/filter-background.png) repeat-x fixed;
}
Themes are allowed to use minified css / js but they have to include the unminified version but it seems that in this case that rule was overlooked. I have left a message for the theme author to provide it in the next release https://themes.trac.ww.wp.xz.cn/ticket/18095#comment:7
In the meantime feel free to ask additional questions if you can’t figure something out
Ok, thanx. and sorry, I should have mentioned which theme we are talking about. It is MN Flow theme.
When you open the CSS sheet, all you see is this:
/*
Theme Name: MN Flow
Theme URI: http://www.mateusneves.com/mn-flow-theme/
Author: Mateus Neves
Author URI: http://www.mateusneves.com
Description: A simple theme to use, modify and have fun.
Version: 0.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: white, light, one-column, fluid-layout, custom-background, custom-colors, custom-menu, editor-style, featured-images, responsive-layout, post-formats, sticky-post, theme-options, translation-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you’ve learned with others.
*/
For example: I wanted to raise the margin of the ul li in the main nav bar. But checking it out in firebug doesn’t give me sufficient info and clarity as to how to formulate the correct tag and or div.
I know a bit about html and CSS, but not thát much, haha.
If someone could privide me with the stylesheet, I would be soooo happy!
If I could, I would show you what I am making, but I do it on localhost.
Ilonka
Going by the demo first thing that is affecting the position of the nav is
.website-title {
margin: 0 0 30px;
float: left;
}
this pushes the nav 30px lower as it is stacked before the menu.
to target the menu use:
.navbar-collapse.collapse {
}