476

(5 replies, posted in Showkase Support)

I'm not sure what might have caused your problem (you should be able to upgrade Showkase following the instructions here without any problem) but I'm glad to hear that it seems to have been resolved.
Thank you for letting me know.

477

(3 replies, posted in Showkase Support)

You're welcome!
I'm glad you've been able to resolve your problem. Thank you for letting me know.

478

(3 replies, posted in Showkase Support)

The About page is designed to display a column of text (on the left hand side of the screen) and an image from the Library (on the right hand side of the screen).
You could perhaps increase the width of the text slightly by using the following CSS in your 'showkase/_themes/maribo/css/custom.css' file:

.page-body {
    max-width: none !important;
}

However, if you choose to not display an image on your About page, then the column of text might seem quite narrow and you might be better off using a Basic page and setting 'Body text layout' to '1-column narrow' (in the 'Override Site Options' section).

479

(5 replies, posted in Showkase Support)

Thank you for posting back to let me know.

480

(3 replies, posted in Showkase Support)

That's great! Thank you for letting me know.

481

(3 replies, posted in Showkase Support)

I'm not quite sure what the problem is but if you are using Showkase v1.5.0, please make sure you click 'Save' after renaming any pages on the 'Pages' tab (and before clicking 'Publish').
I do not see any page names changing after clicking 'System -> Repairs -> Repair' (although, if all is well, there should hopefully be no need to click 'Repair').

If you can reproduce a problem consistently, please post a list of steps (using the exact Showkase terms and button names) so that I can try to replicate the problem myself. Thank you.

Also, I'm not sure what you mean by the topic subject of 'uninstalling' but, if you install Showkase to a directory of its own, then you can uninstall Showkase by simply deleting that directory. Showkase stores all its files inside its own directory and does not use a database. Be careful if you install Showkase to your root directory as there may already be other files there which you might want to keep if you decide to uninstall Showkase.

482

(5 replies, posted in Showkase Support)

If you'd like to hide your home page from the navigation menu under the Maribo theme, then add the following CSS to your 'showkase/_themes/maribo/css/custom.css' file.

/* Show/hide home page in nav */
nav > ul:first-child > li:first-child {
    display: none;
}

(If you view the source of the Maribo demo's web page, you'll see this code being used.)

483

(5 replies, posted in Showkase Support)

If you want to hide a page from the navigation menu:

(1) In v1.5.0 or later...
On the 'Pages' tab, drag and drop the page onto the 'Hidden pages' text.

(2) In versions prior to v1.5.0...
Edit the page and deselect the 'Show in Nav' checkbox.

You need to have one page/link visible in your menu as your home page.

If you want to hide the entire navigation menu, then you will need to do this using CSS.
Add the following CSS to your theme's 'custom.css' file.
For example, if you are using the Kosel theme, then the file will be located here: 'showkase/_themes/kosel/css/custom.css'.

nav#nav {
    visibility: hidden;
}

More information about Adding Custom Styles (using CSS to affect the style of the Showkase site) can be found here.

If you are not already using the latest version of Showkase and wish to upgrade, then instructions can be found here.

484

(5 replies, posted in Showkase Support)

@rajdian14

You're welcome!

485

(93 replies, posted in Showkase Support)

@atreidex

Thank you for the suggestions.

I'm not sure exactly what layout you are trying to achieve but you might have better luck using CSS rather than HTML tags.

You can use your browser's developer tools (usually accessed via the F12 key) to check which ids or classes on your page you might need to apply custom CSS rules to. You can then add your own custom CSS rules (to change the layout and/or style of the page) to your theme's 'custom.css' page (as noted in the Adding Custom Styles and Fonts support section).
It might not be possible to achieve what you are looking to do via CSS but hopefully this will help or at least point you in the right direction.

Additional notes and links on using your browser's developer tools can be found in this forum thread.

486

(3 replies, posted in Showkase Support)

You're welcome!
I'm glad it worked. Thank you for letting me know.

487

(3 replies, posted in Showkase Support)

Try adding something like the following to your 'showkase/_themes/maribo/css/custom.css' file:

nav#nav .nav:not(.subnav) a {
    font-weight: bold;
}

nav#nav .subnav a {
    font-size: 12px;
}

488

(3 replies, posted in Showkase Support)

You're welcome!

489

(3 replies, posted in Showkase Support)

There is no configuration option available in the interface which would allow you to do this but you could certainly achieve it quite easily using one of the two suggestions below.

You could either:

(1) Open the 'showkase/_themes/base/pagetypes/basetheme.tpl' file in a plain text editor and add a target="_blank" attribute to each of the <a> tags between line 180 and 188 inclusive.
For example, change:

<a href="{$facebookLink}" title="facebook"><span class="icon-facebook2"></span></a>

... to:

<a href="{$facebookLink}" title="facebook" target="_blank"><span class="icon-facebook2"></span></a>

... or:

(2) Add the following code to your theme's 'custom.js' file (e.g. 'showkase/_themes/kosel/js/custom.js'

$('.socmedia').children('a').attr('target', '_blank');

Option #2 is probably the easier of the two suggestions to implement and does not involve modifying source code but both suggestions should work equally well. The result is the same at the end of the day whether you add the 'target' attributes yourself (#1) or let the JavaScript code do it dynamically (#2).

Please note that the line numbers above refer to the current version of Showkase (v1.4.3).

490

(12 replies, posted in Showkase Support)

You can set the site header link via:
Site -> Site Settings -> Site Header -> Site header link

The URL can be relative (to the root Showkase directory) or absolute (in the form http://www.example.com/index.html).

Try using: http://elitenegler.com/index.html

491

(12 replies, posted in Showkase Support)

I was just wondering how it is possible to change words "Name", "E-mail", "Message" in the contact form.

Open the 'showkase/_themes/base/pagetypes/contact.tpl' file in a plain text editor and change "Name", "Email" and "Message" in lines 68, 70 and 72. The line numbers refer to the current version of Showkase (v1.4.3).

<label for="name">Name <span class="required">*</span></label>
...
<label for="email">Email <span class="required">*</span></label>
...
<label for="message">Message <span class="required">*</span></label>

Is it possible to keep menu - link, highlighted ?

Try using something like the following CSS code in your 'showkase/_themes/kosel/css/custom.css' file:

nav ul li.active a {
    color: #00ff00 !important;
}

492

(12 replies, posted in Showkase Support)

When i use word-spacing, it does make some space between the words but i am missing "Contact" because he is using spacing. Contact is gone. How can i adjust so i have all of the words in the menu?

Unfortunately, it is really difficult to troubleshoot a problem without being able to see it for myself.
I would really need to see the problem on a live web page in order to use my browser's developer tools to determine the cause of the problem.
If possible, please post the URL to a web page which demonstrates the problem.
In the meantime, try replacing:

nav {
    word-spacing: 50px;
}

... with either:

nav#nav a {
    margin-right: 50px;
}

... or:

nav#nav a {
    padding-right: 50px;
}

... adjusting the pixel value as necessary.

Another one, web version is working perfect but when i use it on the mobile, the MavenProRegular font is not implemented.

At the moment, it looks like your MavenProRegular font might not even be used in the regular desktop version of your site.
It looks like the font being used is Arial (in desktop as well as mobile).
Please check the location of the font files on your web server. According to the paths in your '_themes/css/custom.css' file, it looks like the font files should be in this directory http://elitenegler.com/fonts/ but they do not seem to be there.

493

(12 replies, posted in Showkase Support)

How can i move menu on the left side, below the logo ?

This is not a layout which is supported by Showkase. The navigation menu for a Kosel site is right-justified.
Trying to move the navigation under the site logo and justified to the left may interfere with the mobile vs desktop display.
You could try something like the following but I would not recommend it. You may run into unforeseen problems that you might have to tackle at a later date.

nav#nav {
    clear: both;
    float: none;
}

nav > ul, .nav-2 {
    float: left;
}

Which code should i use in custom.css for setting the size of the font of the main menu?

Try something like the following. (You will need to increase the line-height to accommodate the larger font-size and you may need to increase the min-height for the navigation menu, too.)

nav#nav ul a {
    font-size: 50px;
    line-height: 50px;
}

nav#nav {
    min-height: 150px;
}

Can i use some spacing between the words in menu ? They are almost next to each other. I want to set some space between the words?

Try something like:

nav {
    word-spacing: 50px;
}

494

(12 replies, posted in Showkase Support)

How can i adjust in css menu. I want to move it a little bit down.

Try something like the following in your 'showkase/_themes/kosel/css/custom.css' file:

nav#nav {
    padding-top: 50px;
}

How can i have that the logo is not messing up the position of the menu.

Try limiting the size of your site logo via the 'Site -> Customize Theme -> Site Header -> Logo max width px' setting.

If this does not help, then please post the URL to your Showkase site so that I can take a look at the problem for myself and hopefully help further.
Thank you.

(The typo in the Adding Custom Styles and Fonts support section has now been corrected.)

495

(12 replies, posted in Showkase Support)

For others reading this forum thread, instructions for 'Adding Custom Styles and Fonts' can be found here.

I notice that there looks to be a typo in the sample CSS in the link above (in the /* Use it */ section): header hgroup h1 should be header .hgroup h1. (Note the dot preceding hgroup. hgroup is a class name rather than a tag in this instance.)
To change the font family for the 'site heading', try the following:

/* Use it */
header .hgroup h1 {
  font-family: 'MavenProRegular', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}

Also, please note that the sample /* Use it */ section is specific to (and will affect only) the 'Site heading'.
If you want your font to be used for all text throughout your Showkase site, then try the following:

/* Use it */
header .hgroup h1,
header .hgroup h2,
section.page-body,
section.page-body h2,
nav#nav a,
body #outer #wrapper footer small {
  font-family: 'MavenProRegular', Arial, sans-serif;
}

If you continue to experience difficulties, then please post the URL to your Showkase site so that I can take a look at the problem for myself and hopefully help further.

496

(12 replies, posted in Showkase Support)

Try adding the following to your 'showkase/_themes/kosel/css/custom.css' file:

footer {
    text-align: center;
}

If you need to customize Showkase beyond the capabilities of the available interface options, then the best thing to do is to use your browser's developer tools (usually accessible via the F12 key) to determine the CSS classes or ids of the elements on the web page that you want to change. You would then apply custom CSS rules to these classes or ids (or other selectors) in your theme's 'custom.css' file.

Please see this forum post for further information and links which may help.

497

(12 replies, posted in Showkase Support)

Try adding the following to your 'showkase/_themes/kosel/css/custom.css' file:

.type-juicebox footer {
    margin-top: 5px;
}

.type-juicebox section.gallery.gallery-juicebox {
    margin-bottom: 0px;
}

If this does not help, then please post the URL to your web page so that I can take a look at the your page's layout and hopefully help further.

498

(1 replies, posted in Showkase Support)

Please note that the 'Page title' and 'Page description' in the 'Page Content' section are used only in the web page's meta tags (for the 'og:title' and 'og:description' respectively). They are not displayed on the web page (but you should see them if you view the source of the web page in a browser).
The name of the Gallery Index Page (used in the navigation menu only) should be entered in the 'Pages -> Customize -> Nav Name' input field.
I hope this helps.

499

(93 replies, posted in Showkase Support)

@35ol

OK. Thanks for clarifying.

500

(93 replies, posted in Showkase Support)

@35ol

Thank you for the suggestions.

... but can't modify the top navigator link to there.

I don't know if it will help but you can create a navigation link in the Showkase menu ('Pages -> New Page -> Navigation Link') without it having a corresponding Showkase page. (It would just be a link to whatever web page you like.)