K-Fella
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My blog's type and imagery look AWFUL in Internet Explorer!Blog URL?
Forum: Fixing WordPress
In reply to: Unique user private pageI don’t know of any plugins. The only built-in option I can think of is using password protection on the posts. Give each user their own password. Not a nice solution but it should work.
What does line 56 read?
Forum: Themes and Templates
In reply to: newsletter form“Newsletter form URL” relates to the page that processes the form input.
<form method="post" action="THIS IS THE FORM URL">
“Newsletter Form Field Name” relates to the name of the input field that asks for the email address.
Forum: Themes and Templates
In reply to: avoiding @importIf you don’t want to use import, simply copy the content of the parent theme css file into your child theme, then add you own css to the end.
The reason people say @import slows page loading is because it’s an extra resource to load for each page view. Having only one @import won’t have too much of an impact on page load times.
Forum: Themes and Templates
In reply to: Add Custom Link to TwentyTen Header?Replace
<?php echo home_url('/'); ?>
with the URL you want.Forum: Themes and Templates
In reply to: Chocotheme – Adding Year to Date DisplayedYou need to edit the template file(s) for the theme. It probably uses the_time() instead of the_date().
Forum: Themes and Templates
In reply to: Struggling to get rid of text. I made a video so you can seeI’m guessing that section is hard coded into the theme. You will need to use the theme editor to edit it.
In the backend, go to Appearance and choose Editor. One the right choose Header (header.php). The contents of that file is then loaded into the editor textarea. Scroll down until you find <div id=”welcome”>. That’s where you can edit the text.
Hope this helps =)
Forum: Themes and Templates
In reply to: Image Dimensions – Both Square but showing differentThe css for that page has .main_photo set to a width of only 300px, which means the image gets cropped.
Forum: Fixing WordPress
In reply to: PHP code for padding?Use conditional tags in your template. For instance:
<div id="menu" <?php if ( is_page('blog') ) { echo 'class="blogmenu"' } ?>
Then add a new style for .blogmenu with the extra margin/padding.
Forum: Fixing WordPress
In reply to: Add New UserIf you decide to move to a self-hosted copy of WP, these should help.
https://www.problogger.net/archives/2009/01/03/how-to-move-from-wordpresscom-to-wordpressorg/
https://en.support.wordpress.com/moving-a-blog/#moving-to-wordpress-org
Forum: Themes and Templates
In reply to: Resolution Problems for VisitorsOther possible solutions:
https://www.modernizr.com/
https://css-tricks.com/css-media-queries/Forum: Fixing WordPress
In reply to: Add New UserThe domain name + the mapping = $17 (if I read correctly).
Forum: Fixing WordPress
In reply to: Divider image between posts disappearingTry removing the padding from div#wrapper and adding it to div#main.
Forum: Fixing WordPress
In reply to: PHP code for padding?#menu { margin-bottom: 10px; /* or padding-bottom: 10px; if margin doesn't work */ }