SomewhatRounded
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Trying to change menu background color?.site-headerwill do the trick 🙂Yepp, that’s all there is to it!
The only plugin I’ve used for css was Simple Custom CSS; I just stick to using Child Themes, but either option works!
Hey Jim,
Your optin form is slightly breaking the rules, which may have been why you would have had a hard time getting the form and image to match up (it extends past the pre-defined area for those side widgets)
A quick fix would be to make the img container extend as well
.jetpack-image-container { width: 20em; }^pretty darn close
You can add that tidbit either in a child theme or using a custom css plugin 🙂
Hope that helps!
Forum: Themes and Templates
In reply to: [Delicacy] Change font face & size?Easy! 🙂 Are you using a child theme or custom css plugin?
Something like this should help:
body { font-family: (your font info here); font-size: (font size); }If there’s some font info set under different css rules, you’ll just have to make a few changes by finding out what you want changed and adding it to the above.
If you want to use a Google Font, you’ll have to add the relevant code as well (which just means copying and pasting the @import in this case)
Forum: Themes and Templates
In reply to: Remove "Home" Title from front static page Twenty-Fourteen ThemeIf you just want it removed off that front page, all you need is
.home .entry-title { display: none; }Forum: Themes and Templates
In reply to: css file appears to be emptyHey Pedro,
You haven’t done anything wrong, no worries! That’s all that’s in Responsive’s main css file. If you want to see what’s actually used, it’s located under core/css/
Nothing should need to be fixed! From what I got from your top bit there, you did create your style.css file with the necessary info in your child theme folder? You just have to make all your changes there 🙂
Forum: Themes and Templates
In reply to: Spun – move header image to centerThe code should either be placed in the stylesheet of your child theme or into the area provided by a custom css plugin
Forum: Themes and Templates
In reply to: Sidebar overlappingIt’s actually looking fine for me now, in Chrome, Firefox and IE
The reason I mentioned a child theme or custom css plugin is that if you’re making the changes directly to the theme’s stylesheet they’ll be lost when the theme updates and/or cause other problems.
It’s super easy to create a child theme though, http://codex.ww.wp.xz.cn/Child_Themes or install one of the many custom css plugins and copy and paste your changed code to avoid any issues 🙂
Forum: Themes and Templates
In reply to: Spun – move header image to centerHey achurch,
Are you using a child theme or custom css plugin?
Just a few steps will centre it for you!
.header-wrapper { width: 100%; text-align: center; }Changing the width to 100% allows the image to be centered but also causes the size to change, if you want to set the size you can do so using:
.header-wrapper img { width: (desired width); }(something around 28em will have it looking about the same)
Hope that helps!
Forum: Themes and Templates
In reply to: Sidebar overlappingAre you using a child theme or custom css plugin? (those are the only places recommended to make changes)
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Add a thin vertical line to themeesmi’s background image solution would likely be the easiest. I never even thought to ask if you were referring to the primary sidebar or the content sidebar?
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Add a thin vertical line to themeYou could add something like this:
.site-content { border-left: 1px solid black; margin-left: 23em; }That will shift the content though. It could be done in other ways, but it would involve more tinkering!
Hope that helps!
Forum: Themes and Templates
In reply to: Sidebar overlappingHey irncru,
It isn’t something that has to be removed in a template. In your custom-styles.css stylesheet you have a right margin of -235px set for
#sidebar-shell-1, if you just change the value to a higher number (-260px looks pretty good) it won’t be overlapping anymore.Hope that helps!
Forum: Themes and Templates
In reply to: [Fashionistas] Center elements in header widgetHi Paul,
It actually already shows up centered for me. Are there any particular instances for you where is isn’t centered? Have you tried clearing your cache?
There are other themes that would get a closer match to the original site, but if you’re just looking for a full page background, this should help
Good luck!