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?

CommentFileSizeAuthor
#6 id_facta_nav_menu-442912_6.png29.89 KBmrtoner

Comments

templ1’s picture

Status: Active » Fixed

The logo is not gif. The logo image is located in the images folder of the theme, and is logo.png. Just replace that.

juroon’s picture

You 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!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

mrtoner’s picture

Component: Documentation » Code
Category: support » bug
Status: Closed (fixed) » Active

I'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:

  • The logo can be changed by replacing the file as noted (I don't expect this to be documented, since the HTML is obvious), but the Logo is not enabled/disabled by using the controls at Administer > Site Building > Themes >Configure > Toggle Display
  • Custom logos cannot be selected
  • The Site Name does not display, even though there is a toggle
  • The Slogan does not display, even though there is a toggle
  • The Mission Statement does, in fact, display and toggle
  • The Search box display does not toggle
  • Secondary Links do not display, even though there is a toggle

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.

templ1’s picture

None 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,

mrtoner’s picture

StatusFileSize
new29.89 KB

I'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.

templ1’s picture

we 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,

mrtoner’s picture

That'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.

templ1’s picture

you 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;
}

mrtoner’s picture

Nice. I also added this:

#left .leaf.last  {
  border-bottom: none;
}

When I get time I'll look at the regions, correct those and write a patch.

Thanks!

irishgringo’s picture

I 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
-->