yngwin
Forum Replies Created
-
Forum: Plugins
In reply to: Paying for WordPress PluginsThe GPL doesn’t forbid charging for software. It makes it free as in free speech, not necessarily as in free beer. You may even try to sell WordPress itself if you want, as long as you keep the original license.
Forum: Themes and Templates
In reply to: Header words (newbie question) how do you take them off?The only problem with the current solution is that you don’t have a link back to the homepage. So I suggest you put back in that heading:
<div id="head">
<h1>
<a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a>
</h1>
<p id="desc"><?php bloginfo('description'); ?>
</div>Then put into your stylesheet:
h1 a:link, h1 a:hover,
h1 a:visited, h1 a:active {
position: relative;
display: block;
height: 200px;
width: 770px;
text-decoration: none;
border: none;
background: transparent url(images/header.jpg) no-repeat top right;
font: 20px/20px sans-serif;
text-indent: -9999px;
}
p#desc {
font: 1px/1px sans-serif;
text-indent: -9999px;
}Forum: Themes and Templates
In reply to: What’s so bad about tables?See this presentation: https://www.hotdesign.com/seybold/
Your problem is not that Firefox is weird. IE is weird, and is not following the standards there. You should read up on the CSS box model.
Forum: Themes and Templates
In reply to: White BarThe white bar is part of div#page background. I haven’t been able to quickly eliminate that, because Kubrick is not the easiest theme to customize. You should play around with height, margin, padding and line-height settings of the involved elements.
Forum: Fixing WordPress
In reply to: Splash page revisitedWhy do you want a splash page? That’s so last century…
Forum: Fixing WordPress
In reply to: WordPress theme files are out of orderOf course WP has something to do with this! It does sort the files, and then put the stylesheets on top. Logically, it should put the rest of the files in alphabetical order, but for some reason it doesn’t (not on my server either).
Forum: Fixing WordPress
In reply to: Swedish characters look peculiar in SafariYou really should use utf-8. But it seems Safari is not picking that up. Is Safari set to automatically view in another encoding? It should pick up the encoding that WP sends.
It may also be a font problem: does Safari pick up the same fonts as your other browsers?
Forum: Fixing WordPress
In reply to: can’t save change to “template and file editing”Forum: Themes and Templates
In reply to: CSS Problem – Code Does Not Overlap?top: -4;
4 what? And if you want it to float, maybe you should use float? Anyway, without some example online it is hard to tell what you want and where it goes wrong.And yes, you can do all that with CSS.
Forum: Themes and Templates
In reply to: Is there hope?What do you mean with “the goal is to get the blog to look like what I have now, but with all its functionality intact”?
I’d say start with WordPress, and add whatever missing functionality WordPress doesn’t have by default. That seems to me the best way to go about it. What is the functionality you’re missing then?
Forum: Themes and Templates
In reply to: SimplificationThe site now screams: information overload. Have a look at my themes: https://wp.berkano.net – they’re much simpler and easier to read.
Forum: Themes and Templates
In reply to: Looking for a theme designerIf you like what I do at https://wp.berkano.net/ (note there’s a theme switcher in the sidebar with my themes) then let me know and I could do a custom theme for you.
Forum: Themes and Templates
In reply to: Theme using HTML 4.0Well, that’s just an opinion, and a limited one at that. I’m sure most standards-aware web developers don’t agree with that view.
Forum: Fixing WordPress
In reply to: HTML Input is changed in an ‘stupid’ wayWP uses different ‘filters’, some of which can be turned off in the admin interface. Now it would be good if we would have full control over all filters, but currently that is only possible by editting the WP code directly, or by using a special plugin (which I don’t think exists yet).
The filters can be turned off by commenting them out in wp-includes/default-filters.php and their functions are defined in wp-includes/functions-formatting.php. You are probably looking for the wpautop one.
Forum: Installing WordPress
In reply to: Can I Install WordPress In Frames?Instead of frames, you can just use PHP includes to import the part you need.