Andreas Jacob
Forum Replies Created
-
Hola,
you can do this by adding a new menu in the WordPress backend.
Forum: Themes and Templates
In reply to: Greenpark2 Theme Breaking On Opera 9.6 and aboveHi wheelosphere,
thanks for your feedback!
The Green Park 2 theme is literally cross-browser-compatible. It has been tested on Windows XP/Vista/7, Mac OSX and Linux (Ubuntu 9.04/9.10) with these browsers (where available):
– Internet Explorer 6/7/8
– Firefox 2/3/3.5/3.6
– Opera 9/10
– Safari 3/4
– Chrome 3/4It works on these systems. But I wont say, that I’ve overseen something. So, can you please provide us with some more details about your system, especially your
– WordPress Version
– your plugins (yes, all of them 🙂 )Many thanks in advance!
Andreas Jacob
Forum: Themes and Templates
In reply to: Theme disappearing from Manage Theme interfaceHi audunms,
thanks for the feedback!
Please backup any changes you made to the themes files on your harddrive and upload the latest version of the theme to your webserver. Make sure, there is no other version of Cordobo Green Park 2 in the themes-folder.
Then activate the latest (and only) version and check if you still have a problem with disappearing themes. Please leave a note here (or close the topic if solved).
Many thanks in advance,
Cordo
Forum: Themes and Templates
In reply to: Comments not working in Chrome/IE9/Safari; Firefox fineHi jstynes,
thanks for your feedback!
The Green Park 2 theme is literally cross-browser-compatible. It has been tested on Windows XP/Vista/7, Mac OSX and Linux (Ubuntu 9.04/9.10) with these browsers (where available):
– Internet Explorer 6
– Internet Explorer 7
– Internet Explorer 8
– Firefox 2
– Firefox 3
– Firefox 3.5+
– Opera 9
– Opera 10
– Safari 3
– Safari 4
– Chrome 3
– Chrome 4 BetaIt works on these systems. But I wont say, that I’ve overseen something. So, can you please provide us with some more details about your system, especially your
– WordPress Version
– your plugins (all of them)Many thanks in advance!
Andreas Jacob
Forum: Fixing WordPress
In reply to: Why is there a huge gap in the right side bar of my page?Hi Simona71,
you added an additional
<div id="post-227" class="post"> <div id="post-227" class="hentry post">whereas the one you added is not closed properly.
This causes
1) a problem with the W3 validator and
2) the problem with the misalignment of the sidebar and footer.As I don’t know if the link you provided is an entry or a page, please check both
single.php AND page.php for the occurance of
<div <?php post_class() ?> id="post-<?php the_ID(); ?>">
in single.phpand
<div class="hentry post" id="post-<?php the_ID(); ?>">
in page.phpBest, Cordobo
Forum: Themes and Templates
In reply to: Extend width of fixed width columnHi mroshaw,
if you want to keep the 985px width you only need to change 3 CLASSES/IDs (marked bold):
#container { float: left; margin: 0 <strong>-350px</strong> 0 0; width: 100%; } <em>/* -350px is the width of the sidebar, e.g. -300px reduces the width to 300px */</em> #content { border-right: 3px solid #D5DADD; margin: 0 <strong>350px</strong> 0 0; <em>/* reduce it to the same px-width as in #container */</em> overflow: hidden; padding: 19px 0 0; } #sidebar { background-color: #fff; border-left: 3px solid #D5DADD; float: right; margin-left: -3px; padding: 15px 20px 15px 10px; <strong>width: 320px;</strong> <em>/* the width of 350px - 15px - 15px padding */</em> }You might adjust some CLASSES with the width of width: 576px; like the date in the blue box below the headline to fit the new width.
I try to add a simpler solution to the admin panel in the next releases.
HTH, Cordobo
Forum: Themes and Templates
In reply to: About box in widget. How to remove?Hi novotny1,
Open the sidebar.php, remove the following code
<li id="about" class="clearfix"> <div class="sb-title"><?php echo get_option('greenpark2_sidebar_about_title'); ?></div> <ul> <li> <?php echo get_option('greenpark2_sidebar_about_content');?> </li> </ul> </li>save the file and upload it to your themes directory.
I added this feature request to my todo list for the next release. Thanks!
Forum: Themes and Templates
In reply to: IE 7 problemsI have checked the Theme for misalignments in IE6/7 and fixed them in Beta 5 (coming later today).
Thanks for the feedback.
Forum: Themes and Templates
In reply to: IE 7 problemsAm I the only one?
I hope so 😉
What exactly does not display correctly?
Forum: Fixing WordPress
In reply to: How to add a left sidebar into cordobo green park 2I try to find the time to add some options to the admin panel for the next release so everybody can easily change between 1 and 2 sidebars.
Forum: Fixing WordPress
In reply to: How to add a left sidebar into cordobo green park 2do77 is right. You should have a profund knowledge of CSS/HTML (php is not necessary) if you want to add a 2nd sidebar on the left side.
I probably add a 2nd one as an alternative to the next release.
Best, Cordobo
Forum: Plugins
In reply to: Dropdown menu for cordobo green park 2Hi,
dropdown menues are implemented, but you only see them if you have pages 3 levels deep (sub-sub-pages).
HTH, Cordo
Forum: Fixing WordPress
In reply to: how to add header/logo into cordobo green park 2You’re welcome 😉
Forum: Fixing WordPress
In reply to: how to add header/logo into cordobo green park 2please check the readme.txt file delivered with the theme or the “Green Park 2 Settings” in the admin panel of wordpress.
The theme itself already contains the necessary CSS in style.css to add your own logo and a FAQ to change the logo in the readme.txt
Forum: Fixing WordPress
In reply to: WP forcing a style tag 10px bigger than imageA simple workaround I used in my theme http://cordobo.com/green-park-2/ is to overwrite the inline-styles added by wordpress:
.entry div.wp-caption { width: auto !important; <em>the rest of your styles</em>This works in all the newer browsers and you don’t have to touch the core-code of WP