Thomas Clausen
Forum Replies Created
-
Hi Daniel
You can edit line 40 in the file archive.php
But be sure to make the changes in a child theme so you won’t lose the changes with future updates of the theme.Best regards
Thomas ClausenForum: Plugins
In reply to: [Social] [Plugin: Social] Cannot get .po-file to workYou need to create a folder called “lang” in the “social” folder and place your translation file there.
I haven’t been abble to find an official .pot file.
Forum: Themes and Templates
In reply to: link does not change colorInstead of a:link I would just use a, because a:link only targets unvisited links.
For example:
#main .post p a { font:Arial, Helvetica, sans-serif; font-size: 12px; color: red; text-decoration: none; } #main .post p a:hover { text-decoration: underline; }See http://www.w3schools.com/css/css_pseudo_classes.asp for more information.
I also noticed in your index.php file you have the following inline styles applied:
<h4>Latest News</h4> <p style="border-bottom: 2px dotted #FF0000; width: 620px;"></p><br />I would just change the HTML to:
`<h4>Latest News</h4>’
And then change the appereance in the stylesheet with:
#content #main h4 { width: 620px; border-bottom: 2px dotted #FF0000; }
and control the placement of the dotted line with padding and margin.Forum: Themes and Templates
In reply to: How to reduce content width?I would create a child theme and change the #content.no-sidebar div to the width you wish.
Forum: Themes and Templates
In reply to: Dotted lines on contentI would create a child theme and change the CSS you don’t like.
Forum: Themes and Templates
In reply to: I need help changing a colourOn #access you are setting a gradient background:
[CSS code of more than 10 lines moderated – please use the pastebin]
You should just be able to to remove those lines to remove the black squares.
Forum: Themes and Templates
In reply to: link does not change colorYou forgot an “r”:
color: ed;