Yosemite theame

Permalink 1 user found helpful
I am using the yosemiti theame and I am VERY new to this. I can not for the life of me figure out how to add tabs at the top or change the picture. Am I in the right forum for this question for help?

 
Mnkras replied on at Permalink Reply
Mnkras
just add a new page off the homepage and it should automatically make a new tab,

take a look at

http://www.concrete5.org/documentation/general-topics/add-a-page...
jordanlev replied on at Permalink Reply
jordanlev
Mnkras is correct that you just add a new page from the home page and a tab will automatically appear (after you've published the new page).

As for the background image, unfortunately this cannot be changed through the admin interface or the dashboard -- you need to replace the image in the actual files on your server. It's called "img06.gif", and it's located in:
YOURSITE/packages/theme_yosemite/themes/yosemite/images'

So you need to find or create a replacement image, save it in GIF format, rename it "img06.gif", then use an FTP program to upload it to that directory on your server (overwriting the one that's there).

You're going to want to make sure that the new image you create is the same size as the old one (980 pixels wide by 270 pixels high).

Good luck!

-Jordan
blushhk replied on at Permalink Reply
Hi,

Anyone know how I can change the tab colour of the active page?

Thanks!
jordanlev replied on at Permalink Reply
jordanlev
It's not something that's built into the theme, so you'll have to do a little work.

First, find the "img02.gif" image inside the theme's "images" folder and copy it (for the sake of example, let's say you called the copy "img02_active.gif"). You'll have to edit that with an image editor to make the desired color (if you're on Windows, use the free Paint.net program -- on the mac there aren't too many good free image editors unfortunately, you might try one called "Seashore"). Then edit the theme's "main.css" file, and add a rule like this:
#menu a.nav-selected {
    background-image: url(images/img02_active.gif);
}


Good luck!

-Jordan