Forum Replies Created
-
Mod
Generally, “active” refers to a link that you are actually clicking on. If you mean “the menu item for the page that I am currently on” then WordPres generally appends the
.currentclass to that link so it can be styled separately. (That is, “active” is a CSS thing; “current” is a WordPress thing.)However, it appears that you are using some kind of menu plugin, so your best bet may be to peruse that plugin’s support forum to look for a solution, or to ask your question there if you can’t find one. And, as always, be sure to include a link to your site.
Also, I can’t actually access a page like the one above to examine code.
Mod
There could be lots of reasons for this. When you are on that options page, try pressing F12 to open the inspector. Then click on “Console”. Do you see any errors listed there?
How did you transfer your site over? Did you reinstall WordPress and Graphene from a zip, or did you copy the files at your old host to your new one?
Mod
Quote:Sorry about that. I obviously was having a brain malfunction when I posted that – I accidentally commented out the code.It happens. I have actually edited one file when I thought it was another, and couldn’t figure out why nothing was changing. It was…frustrating.
Quote:So, you have me in the right direction. It’s still not a perfect match, but it is much closer. I will make minor adjustments, and eventually it should be on target.Yes, there was a lilttle difference in height I didn’t have time to pin down. But I’m sure you’ll figure it out.
Glad I could help.
Mod
Try adding:
.post-title, .post-title a, .post-title a:hover, .post-title a:visited {
color: #fff;
background: linear-gradient(#000000, #313130);
}and changing the padding here:
.post-title, .post-title a {
border-bottom: 1px solid #195392;
-moz-border-radius: 5px 5px 0 0;
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
color: #fff;
font: 18px/20px "Pontano Sans", arial, sans-serif;
margin: -20px 0 10px -10px;
padding: 5px 10px;
text-shadow: 0 -1px 0 #333;
width: 100%;
background: linear-gradient(#313130, #000000);
}to
padding: 7px 12px;Mod
Do you have a link so we can take a look ourselves?
Mod
After spending several minutes clicking around on your site, I am unable to reproduce the issue. Have you resolved it?
Mod
In reply to: Content Text in Posts & Pages & Widgets is not being displayed (Headline, Links images ok)
October 17, 2016 at 11:45 pm #46295You have this line in your custom CSS:
.entry-content, .sidebar, .comment-entry {
font-family: arial;
font-size: 9pt;
color: #0000;
}Firefox just added support for four-digit hex codes, so #0000 renders as transparent, instead of visible. Change it to either #000 or #000000 and everything should render correctly.
Mod
WordPress.org only allows themes that are free of charge. As Graphene Mobile and Graphene Mobile Neo are commercial themes (in that you have to pay for them), wordpress.org does not allow them.
Mod
This is generally the result of an unclosed
<div>somewhere on the page where it is occurring.Mod
Marking thread as resolved. You can do this yourself as well.
