baszer
Forum Replies Created
-
Forum: Themes and Templates
In reply to: What is the most basic theme availabletry something like whiteboard
Forum: Themes and Templates
In reply to: Highlight menu item based on current post.hi,
this will solve your problem
Forum: Themes and Templates
In reply to: Headway, Sidebar randomly won't show on several pagesadd
<?php get_sidebar(); ?>
above the get_footer (at the bottom of the page). To any page you don’t see the sidebar.
For example, if you don’t see the sidebar on your search result page, go to search.php and at the line above.
Forum: Themes and Templates
In reply to: Post position problemI think you also should give the URL of the website for really good help.
Forum: Themes and Templates
In reply to: New question = blockquotes problemHello Blueamulet,
I think you want your blockquote under your image?
this is what you need
BLOCKQUOTE, Q { quotes: none; clear: both; }
add the clear: both; to your blockquote in the common.css, but you can also add it to the blockquote in the style.css
why do you style the blockquote in two different stylesheets? if there is no reason for, you should only style the blockquote in one place. You will get this (delete the blockquote in common.css) and change the blockquote in style.css to:
BLOCKQUOTE { margin: 0 0 1em 1em; padding: 1em 1em 0.5em; font-style: italic; quotes: none; clear: both; }
Forum: Themes and Templates
In reply to: Unwanted Table PaddingHi,
delete/change the padding in:
#content TR TD { border-top: 1px solid #E7E7E7; padding: 6px 24px; }
and align the first colom to the left
Forum: Themes and Templates
In reply to: Need a theme suggestionIf you give me ten procent I will tell you ??
but why not make your own theme as you make money of it!
Forum: Themes and Templates
In reply to: Question on creating CSSForum: Themes and Templates
In reply to: [Minimatica] [Theme: Minimatica] How to remove sidebardelete the pages code from the sidebar.php
Forum: Themes and Templates
In reply to: Can anyone please tell me how to do this?I dont know how the boldy theme looks like, but I think its pretty easy, just delete the content in the div that produces the twitterform, replace that with your code ??
Forum: Themes and Templates
In reply to: Remove Navigation Bar & Search from Twenty Eleven Theme (CSS)no, should be removed in the php files (example: header.php) But a lot of people will advise you not to change the Twenty ten theme as the theme will change back to the origional after every update of WP.
Its better to make a childtheme.
——-edit, after seeing your website—
delete the search code in the header.php
Forum: Themes and Templates
In reply to: Upload finished themehehe i got it! ??
Forum: Themes and Templates
In reply to: HTML Validation Errorthanks Andrei for you reply.
The errors don’t really bug me, but I make this theme for the wordpress website. So I thought it needs to have zero errors on HTML validation. Or are these ‘errors’ allowed?
Forum: Themes and Templates
In reply to: HTML Validation ErrorI got the errors in the lines. Because of the weird rel attribuut
<link rel=”EditURI” type=”application/rsd+xml” title=”RSD” href=”https://test.eenwebsitevanbas.nl/xmlrpc.php?rsd” />
<link rel=”wlwmanifest” type=”application/wlwmanifest+xml” href=”https://test.eenwebsitevanbas.nl/wp-includes/wlwmanifest.xml” />
<span class="category-icon"><a href="https://test.eenwebsitevanbas.nl/category/geen-categorie/" title="Alle berichten bekijken in Geen categorie" rel="category tag">Geen categorie</a></span>
comes from the line of code:
<span class="category-icon"><?php the_category(', ') ?></span>
as you can see in the last line, there is (as far as I know) nothing wrong with my script. So how can I make sure the error disapears
Forum: Themes and Templates
In reply to: HTML Validation Erroranybody?