Evita
Forum Replies Created
-
Forum: Your WordPress
In reply to: Ok, here is mineThanks, moshu
I made these themes to show people what a versatile software wordpress is and for testing some hacks and plugins.
EvitaForum: Plugins
In reply to: Bilingual site. Need pluginForum: Themes and Templates
In reply to: index.php confuses me: just one post, mixing up several contentsHallo Stefan!
Schau mal in den Codex https://codex.www.ads-software.com/The_Loop – dort steht alles Wichtige drin.
Falls du dann noch immer nur 1 Artikel auf der Startseite hast, dann gehe in den Adminbereich – Optionen – Lesen, dort kannst du einstellen, wieviele Artikel per Seite erscheinen.Forum: Themes and Templates
In reply to: Can I use a theme from wordpress.com…https://www.tomrafteryit.net/rubric.zip
Hope, this is the right theme.
Forum: Fixing WordPress
In reply to: space between each page in wp_list_pagesFor example, you can put in your style.css
.page-item {margin-bottom:6px;}That should make a space of 6px between each link.
Forum: Fixing WordPress
In reply to: Parent categories for links… “Link directory”Did you mean something like that: https://www.evitanet.info/links/
In that case, this is a plugin named links page, you can grab it from this https://www.asymptomatic.net/wp-hacks site.
Forum: Fixing WordPress
In reply to: space between each page in wp_list_pagesCSS is your friend.
By default, pages have the class “page_item”. You can put your modifications under .page_item in your style-sheet.Forum: Fixing WordPress
In reply to: Making the main index page a regular page.That′s easy.
Copy your index.php and save it as home.php. On this new home.php delete all between
'<div id="content" class="narrowcolumn">'
and'</div>'
.
Your home.php should now looks like:
'<?php get_header(); ?>
<div id="content" class="narrowcolumn">
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>'
Now, you can write any text you want between
'<div id="content" class="narrowcolumn">
YOUR TEXT
</div>'
Upload via FTP in your themes-folder and the new home.php is the first site of your blog.
Forum: Your WordPress
In reply to: New Fashion/Online Shopping Blog– What do you think?Very nice and clean.
But I think, you should change the word archives to categories – better for a shopping blog. Your font-size is very small for me and is not alterable in IE. Maybe you can change px to em?Forum: Installing WordPress
In reply to: My Search Does Not Work Any IdeasTry in your searchform:
action=”<?php get_settings(‘siteurl’) ?> instead of action=”<?php echo $_SERVER[‘PHP_SELF’]; ?>Maybe this will crack your problem.
Forum: Fixing WordPress
In reply to: Putting Categories into RowsRead this article https://www.alistapart.com/articles/multicolumnlists
Forum: Themes and Templates
In reply to: horizontal in horizontal top menu bartanfa.co.uk/css/examples/menu/hs4.asp
works not in IE6 for me.Forum: Installing WordPress
In reply to: My Search Does Not Work Any IdeasNo, we need the code of the searchform.php
Forum: Installing WordPress
In reply to: My Search Does Not Work Any IdeasPost the code of your search form so that we can help you.
Forum: Installing WordPress
In reply to: Main Container Firefox troubleThe simplest way to check this:
Give all your main-divs a border (wrapper, content, sidebar etc.) – width and margin in Firefox are not the same as in IE .