Steffen J?rgensen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Need suggestion about this themeOk, I was only looking at the frontpage — and therefor didn’t see much WP related code.
Forum: Themes and Templates
In reply to: Need suggestion about this themeThe style.css file says:
/* Theme Name: About.NetSol Theme URI: https://networksolutions.com Description: CSS for About.NetworkSolutions.com Version: 3.0 Author: Network Solutions Author URI: https://networksolutions.com */
However, I don’t think it’s a WordPress site…
Forum: Hacks
In reply to: Hacked By GHoST61Just download the wp-config.php to your desktop and edit it with Notepad or something.
Forum: Themes and Templates
In reply to: Nedd to exlude some pages in headerCan I somehow change the page ID′s?
No
Forum: Themes and Templates
In reply to: Changing Themes Depending On CategoryYou can use the category-{slug}.php
Forum: Themes and Templates
In reply to: Nedd to exlude some pages in headerYou use IDs to include/exclude pages from the menu:
https://codex.www.ads-software.com/Function_Reference/wp_list_pages#Exclude_Pages_from_List
Forum: Everything else WordPress
In reply to: Can you disable "Save As"? function?Only by making the website one big image or Flash-file, you can prevent such thing.
Forum: Hacks
In reply to: How to replace/hide page title on front-endUse a different pagetemplate for that page.
Or, use conditional tags, like so:<?php if ( !is_page('page-slug') ) {?>
<?php the_title(); ?>
<?php } ?>
Forum: Everything else WordPress
In reply to: Aricles vs BlogsI don’t see a problem.
Blog posts essentially are nothing but articles…Forum: Themes and Templates
In reply to: Hyperlinks in widgets not working on IE6A link to the site would help a great deal…
Forum: Themes and Templates
In reply to: Video without pluginJust use the YouTube “
<embed>
” code.
It is shown on every YouTube page when you click the “<embed>
“-button just below the video.Forum: Themes and Templates
In reply to: Theme modificationForum: Themes and Templates
In reply to: changing what "large" doesA link to your blog/website would help a great deal.
Forum: Themes and Templates
In reply to: changing what "large" doesthe “large” and “larger” sets the font-size relatively to the font-size defined by CSS:
https://www.w3schools.com/css/pr_font_font-size.aspIf you have a paragraph with a font-size of 12px and you have a span inside that like:
<p>this <span style="font-size:larger">is sample</span> text...</p>
the text inside the span will (logically) be “larger” than the text outside the span.
I’m not sure if there are specific sizes or that depends on the browser rendering the text.
I usually do it like this:
HTML:
<p>this <span class="larger">is sample</span> text...</p>
CSS:
p{font-size:1em;}
p.larger{font-size:1.2em;}
Forum: Themes and Templates
In reply to: no theme for my downloaded blogI cannot put in any themes to the users that I created
What do you mean by this?