I'm having trouble getting the logo to update or the site name to change. I've uploaded a new logo gif, which is not very big. I've uploaded it both for the admin theme and for id-Facta. I've also tried turning off the logo to use just the site name, but nothing I do changes the pink "Facta" logo. My site name, slogan and mission are set properly in Site information, but they don't show up on my pages.
Do you have any ideas?
| Comment | File | Size | Author |
|---|---|---|---|
| #6 | id_facta_nav_menu-442912_6.png | 29.89 KB | mrtoner |
Comments
Comment #1
templ1 commentedThe logo is not gif. The logo image is located in the images folder of the theme, and is logo.png. Just replace that.
Comment #2
juroon commentedYou have such a nice theme here. It would be a shame for people to get frustrated and abandon it over something like that. I didn't see any notice to that effect anywhere along the line and spent a good bit of time trying to use that standard approach, thinking it was something I was doing wrong.
Maybe this should be closed with "won't fix" instead of "fixed", to let people know before they spend time trying to figure out why it's not working as expected.
In any case, thanks for getting back to me!
Comment #4
mrtoner commentedI'm going to open this issue again, as it has not been fixed, and the issue is not one of documentation or support. These are bugs.
I'll expand a bit on the points that juroon brought up:
In addition, the CSS for the left sidebar is defective, as child menus in the Navigation menu are jumbled on top of each other. In fact, placing another block in that region sets the block's content on top of the Navigation menu. Among other things, the float for #left ul li {} is improperly set.
All of this is unfortunate, as I was impressed by what I saw at iTemplater.com. The designs are good, but I'm not ready to buy until I see that Drupal integration is up to at least the same level.
Comment #5
templ1 commentedNone of the menus, main, left and footer are not styled for child items. Maybe if we release another version we might do them with dropdown, like our commercial themes.
You can display other menus, i.e. secondary links as blocks in the theme regions or where we have navigations in our demo.
This is a simple minimal theme, but is easy to customize though, I think...
Cheers,
Comment #6
mrtoner commentedI'm not quite sure what to make of your response. I'll assume you simply didn't understand my point about the Navigation menu and give you a screenshot to explain.
As you can see, the Administer menu -- in Drupal's standard Navigation menu -- has children items that are being overrun by the parent items. This is due to errors in the theme's stylesheet. It's not a matter of "customizing" this theme, but fixing the CSS and other theming issues prevent the theme from being usable.
At the moment, the issues with this theme are keeping me from purchasing any of your commercial themes, out of fear that similar errors will be found in those.
Comment #7
templ1 commentedwe do fix problems if any, no worries. Yes, I simply did not understand your point, so don't make nothing of my response.... anyway....
a quick fix for your problem would be :
replace
#left ul li {
list-style: none;
width: 100%;
border-bottom: solid 1px #ccc;
height: 15px;
line-height: 15px;
text-decoration: none;
margin:0;
padding:0;
float:left;
}
with this one :
#left ul li {
list-style: none;
width: 100%;
border-bottom: solid 1px #ccc;
line-height: 15px;
text-decoration: none;
margin:0;
padding:0;
float:left;
}
and add the following to style.css
#left ul li ul{
margin-left: 10px;
width: 195px;
}
#left ul li ul ul {
width:185px;
}
you could play with the styling though....
Cheers,
Comment #8
mrtoner commentedThat's better, although it seems to mess up the hover, changing the background color behind all of the list items when only one is hovered over.
Comment #9
templ1 commentedyou could add this :
#left ul li a {
width: 100%;
display: block;
}
and change
#left ul li:hover {
background: #e8e8e8;
}
to
#left ul li a:hover {
background: #e8e8e8;
}
Comment #10
mrtoner commentedNice. I also added this:
When I get time I'll look at the regions, correct those and write a patch.
Thanks!
Comment #11
irishgringo commentedI just put code in the place of the logo to add the logo the drupal way...
echo "<a href=\"$base_path\"><img src=\"".$base_path.path_to_theme()."/images/logo.png\" alt=\"logo\"></a>";this was the original way of doing the node... so I swapped out the code for the line below
-->
print t('Home')">print t('Home')" />