Forum Replies Created
-
Mod
It’s part of the basic structure of a Graphene page, applied to the
<body>element. So just use Firebug or “view source” to examine the<body>tag to see what you are dealing with.Others include:
home — the home page
single — for a post
page — for a page
category — for a category archive
tag — for a tag archive
archive — for any kind of archive
There may be others…I forget sometimes. But this is very useful when working with PHP.
Mod
z-indexdetermines which items appear on top. The higher the number, the more “on top” it will be. So to fix this problem, you can increase the z-index of the item you want to be on top, or decrease the z-index of the items that are in the way.In this case, I would recommend changing the z-index of the lightbox items, rather than the menu itself, since that may cause interference with other z-indexed items in the theme.
And as Tee points out, you’ll want to be sure to use the correct code. (Thanks for catching that, Tee. My time here is limited, as is my internet access.)
For more information, you can read this helpful article:
http://www.w3schools.com/cssref/pr_pos_z-index.asp
and this one:
Mod
Looks fine in Firefox and Chrome.
in Firefox and IE it is still jacked up real bad
Things will always look bad/weird/different in IE–it’s not a real browser.
Mod
You need to change the z-index of your lightbox. Try adding this to your custom CSS:
#lightbox-nav {z-index:600;}(BTW, there are way too many watermarks on your images. It’s less than an optimal experience viewing them.)
Mod
In reply to: Slider shows only the last article since 1.6 update
February 10, 2012 at 10:05 pm #21074What are your current slider settings?
Mod
I did the upgrade, but that was 3 days ago, and the site kept working perfectly for 2 more days
Then it’s definitely not a bug.
The sad thing is that I made a lot of customization, and didnt keep track
This is why you use a child theme. All may not be lost, however. There may be cached files on your server. If so, some of your files may be there. (A long shot, but worth checking.)
Mod
It’s there now. Did you get the resolved?
If you use a caching plugin, it’s not necessarily enough to refresh your browser, since that will only pull files form the cache on the server. You would need to empty the cache on the browser through the caching plugin settings.
Mod
In reply to: No child theme activation option – child theme doesn't work, weird update info
February 10, 2012 at 9:59 pm #23832Where did you put the child theme folder? It should be in the “themes” folder along with the Graphene folder, not in the Graphene folder itself. If you have the child theme folder inside the main Graphene folder, this would explain the results you are getting.
When you upgrade a theme, everything in the theme folder is replaced.
Mod
If that line of text has a special class (say
.creditfor example), then you could hide it in category pages like this:.category .credit {display:none;}I believe the same thing would work for excerpts, using
.excerptin place of.categoryYou may need to use the HTML editor to assign that special class, however.Mod
Just plain
<a>(what is in grey, with the angle brackets). Works for me. Should work for you.
