kcire
Forum Replies Created
-
Forum: Your WordPress
In reply to: My 1st WP Template – Review / Criticism / Help :)I think it looks terrible…what is appealing about it? Serious…please do not spend money on maintaining this!
Forum: Your WordPress
In reply to: Going crazy -is my site too boring??Because most ‘categories’ only have one item in them…it looks as if the page that appears after having chosen a category is everything there is…Only because it says: ‘Browsing Category ?Colorado?’ I discovered that I had to click on the title of the post before I could read on.
Maybe it’s just me…but first I thought ‘is this all?!’.
Solution: fill the categories with more stories so it’s obvious people are watching only a little piece of a page.
I hope I made clear what I mean.
Forum: Fixing WordPress
In reply to: What did I do now? (all my content is suddenly centered)You figured it out! Good to hear that and glad I could help.
Forum: Fixing WordPress
In reply to: What did I do now? (all my content is suddenly centered)I think I got it…
The following line:
.entry blockquote.right { width: 200px; font-style: normal !important; font-size: 1.3em !important; margin: 0.3em 0 0.3em 15px !important; padding: 0.3em 0 !important; border: 3px double #aaa; border-width: 3px 0; text-align: center; float: right; }says text-align:center, this I would change to text-align:left; like following:
.entry blockquote.right { width: 200px; font-style: normal !important; font-size: 1.3em !important; margin: 0.3em 0 0.3em 15px !important; padding: 0.3em 0 !important; border: 3px double #aaa; border-width: 3px 0; text-align: left; float: right; }As you see this class is called .entry blockquote.right …So the .entry blockquote.left should be handled the same way…
Is this the solution? It’s difficult for me without being able to see it all working…
Forum: Fixing WordPress
In reply to: What did I do now? (all my content is suddenly centered)When I look at it with Firefox (as I usually do) it looks like the text at the far right of the website is aligned to the left.
Isn’t this what you wanted?
Forum: Fixing WordPress
In reply to: What did I do now? (all my content is suddenly centered)The line I suggested is a complete new one. So actually you could put it anywhere in the stylesheet.
I would put it beneath the following line:
#calendar_wrap { font-size: 1.3em; }As follows (to keep track of things):
/*—< widget styles >—*/
.textwidget {text-align:left;}The first line is a ‘comment’ and is only there so you later understand what it is. Always handy! This could also be:
/*—< The thing I talked about with kcire at www.remarpro.com >—*/Whatever is clear for you.
You see more of those lines in the stylesheet if you look at it.
Forum: Fixing WordPress
In reply to: What did I do now? (all my content is suddenly centered)Another thingie…
I have looked into the sidebar-list styles and didn’t found a ‘textwidget’ class. Maybe this will solve the center-aligned text at the right side of your website.
Ad the following to style.css:
.textwidget{text-align:left;}Now it should all be aligned left…Is that correct?
Forum: Fixing WordPress
In reply to: What did I do now? (all my content is suddenly centered)GOT IT!
I see a <script> tag from some Website Statistics thingie at the bottom of the style.css stylesheet…Is that suposed to be there?
Also I have just downloaded the style.css and see that both blockquotes have a text-align:center…
I mean the following classes in your style.css stylesheet:
.entry blockquote.left and .entry blockquote.rightPutting ‘left’ instead of ‘center’ here should fix everything I hope….
Forum: Fixing WordPress
In reply to: What did I do now? (all my content is suddenly centered)I couldn’t exactly figure it all out, but maybe this helps:
In your stylesheet (style.css) there is a line like this:
.entry p { margin: 0 0 1.5em 0; }Maybe replace this line with the following:
.entry p { margin: 0 0 1.5em 0; text-align:left;}I would try this. It is a quick and roughed solution if it works…
Let us know?
Forum: Fixing WordPress
In reply to: Different banners on every pageMmhh…This is actually quite perfect!
Never mind the previous post!
Forum: Fixing WordPress
In reply to: Different banners on every pageHey Moshu,
This is it! Thanks! As a PHP-rookie I was wondering how to fit the following lines of code into the solution of the conditional text.For example the following code:
<div class="banner"> a href="https://www.boonika.com/" title="Visit Boonika in a new window."> </div>
(The a href should be correct, but it’s with a bg-img in a stylesheet and otherwise it wouldn’t be visible what I mean)
I want to work with:
<?php if (is_single()) { echo 'This is just one of many fabulous entries in the ' . single_cat_title() . ' category!'; } ?>
Thanks again…
Forum: Fixing WordPress
In reply to: Styling WordPress error pagesI will look into the functions.php, thanks! Maybe this is something to focus on?…
Forum: Fixing WordPress
In reply to: subfolder as root index pageIt is all oke now!
Thanks a million…What would I do without your help!?Forum: Fixing WordPress
In reply to: subfolder as root index pageHey Srikat! Thanks! This is exactly what I needed! Everything went oke…Only thing that is strange after the move is the image of ‘weekly YouTube pick;’…
You see it in the left sidebar beneath the ‘latest additions’, maybe know what is causing this?
Forum: Fixing WordPress
In reply to: 8 articles presented as 16 articles?!Hooray!
Thanks to silpstream everything works as it should again!
Thanks to his ‘WordPress – PHPMyAdmin’ plugin, which can be found at: https://www.silpstream.com/blog/wp-phpmyadmin/
Thanks a million Chris!