Forum Replies Created
-
Mod
Put code in between backtick (
Code:`) characters. It’s usually located above the Tab key on your keyboard.
Additionally, this line could be problematic:
*display: inline;To comment out that line:
/*display: inline; */To apply that style to everything:
*{ display: inline;}Additionally, you are specifying the background twice. Once here:
background: url(images/bg-sidebar-h3.png) left bottom repeat-x #3C9CD2;and again here:
background: linear-gradient(#3C9CD2, #1F6EB6);Only the second one will be applied.
Quote:In the css code there is nothing called widget, so i looked for sidebar and found this piece of code:Sharon is quite right: only use the theme’s “custom css” function or a child theme to make changes. Do not edit theme files directly.
Use Firebug for Firefox. That will show you which elements you are trying to target and save trawling through the stylesheet. Josh has a good tutorial here: http://www.joshlobe.com/2011/10/using-mozilla-firebug-to-inspect-css-files/
Mod
Quote:Sorry, that blog also contains the bugAs I said, that issue does appear there. But I think I can live with it, as it only appears on the 404 page. How often does someone search my site, much less come up with a 404? Not often. But if your users use the search function a lot, then downgrading to 1.9.2 makes sense.
Mod
I don’t have that issue here:
http://blog.kjodle.net/?s=kalin
nor here:
http://blog.kjodle.net/2011/10/30/kalins-post-list-a-brief-tutorial/
but it does appear here:
Mod
Link to calendar plugin in question?
Link to site in question?
Mod
In reply to: Updated to current version. Editing posts in visual mode displays incorrectly.
July 25, 2014 at 3:45 am #43018Marking thread as resolved. You can do this yourself as well.
Mod
Quote:Is it a CSS code for .sidebar something- something maybe?Yup. Try:
#sidebar_bottom .sidebar-wrap h3 {
font-family: Latin, serif;
}Don’t forget the
serifpart: it tells browsers what to use if the Latin font isn’t available (which is why it’s showing Calibri, which is a sans-serif font).Quote:Using !important on all statement is pretty wrong approach :).Gotta agree with Luko on this one. It’s a declaration I see recommended all too often. Kind of like swatting flies with a shotgun.
Quote:There are six footersQuote:As far as I remember there is no footer class in Graphene. Only footer id.Yup. These aren’t in the footer. The Graphene footer contains copyright and “return to top” link. These widget areas are independent of footer area. So the above should work. (At least it does in Firebug. Let us know if it doesn’t IRL.)
Mod
There is is a missing opening
<div>tag just before the last<input>tag.Put code in between backtick (
Code:`) characters. It’s usually located above the Tab key on your keyboard.
Mod
And have you tried the suggestions I gave there? If so, what were the result?
Moved to Support. Please post in the correct section next time.
Mod
In reply to: Updated to current version. Editing posts in visual mode displays incorrectly.
July 23, 2014 at 11:37 pm #43016Mod
The
!importantdeclarations shouldn’t be necessary. (Although you never know. But it’s best to try without first.)Are you importing the “Latin” font? If so, did he delete the line that imports it?
