boblan66
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Need to Edit Tandil TemplateAlex;
Thanks for the reply. If there is anything I can do for you just let me know.
Bob…Forum: Fixing WordPress
In reply to: Creating Links to PagesThanks for the heads up.
Bob…
Forum: Plugins
In reply to: wp-print install help neededThanks for the message… I figured it out, didn’t read far enough. The plugin read me file has all the answeres. All I had to do is read. For those others having problems, go to the top tabs and read…..
Forum: Themes and Templates
In reply to: Need to Edit Tandil TemplateAlex;
First let me say, sorry for not responding to you sooner. Had to take some time off or my wife was going to kill me. I love the theme.
I am creating a cms and a concern I have is I have 16 categories. I made the font smaller so the categories being displayed on the header wouldn’t take so much room. But I can’t help wondering what’s going to happwen when I have all 18 categories containing posts.
Secondly, When posts are listed afterv selecting a category/subcategory from the header, where do I modify the font size so the article titles do not take up so much space. I expect to have a large amount of articles, if everything works out the way I want it to?
Forum: Fixing WordPress
In reply to: Confused and tired – Post vs HomeInidiax;
I read the document you suggested, and other recommended referances. I do not read anywhere that you do not include the https:// portion to the permalink. All the examples I see does have the https:// included. I’m now totally confused.
Bob ??
Forum: Fixing WordPress
In reply to: Confused and tired – Post vs HomeThanks for the advice. I enter https://articleworld-usa.com/BLOG/%year%/%monthnum%/%post_id%/
No matter what I do, the custom permalink after clicking on Save Changes changes to: /http:/articleworld-usa.com/BLOG/%year%/%monthnum%/%category%/%postname%/%post_id%/Forum: Requests and Feedback
In reply to: line spacingAre you saving word in Text? If you save it as a Word document, and format the document in Word you pick up all sort of code from word and double space between paragraphs.
If this is what you did, open your Word doc in Note Pad and save it. Go back to WP and paste the saved Note Pad file into WP. The Word coding should be gone.
Hopen this helped
Forum: Fixing WordPress
In reply to: Confused and tired – Post vs HomeI still haven’t found the 404 error problem. Could you look at the blog and see if you come up with anything?
Forum: Themes and Templates
In reply to: Need to Edit Tandil TemplateI solved the problem. There were other areas that needed editing. Changed the font size to 10px and had to extend the size of the dropdown list under the tab to 162px.
#tabs ul li{ margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px; border-right: 2px solid #fff; font-size: 10px; font-family: Myriad, Myriad Pro, Arial, Palatino, Rotis Sans Serif, serif; letter-spacing: 0; TEXT-TRANSFORM: uppercase; } #tabs UL LI.page_item A { PADDING-LEFT: 10px; PADDING-RIGHT: 10px; FONT-WEIGHT: bold; }
#tabs UL LI.cat-item A { PADDING-LEFT: 10px; PADDING-RIGHT: 10px; FONT-WEIGHT: bold; }
#tabs #page-list LI UL LI { LINE-HEIGHT: 32px; border: 1px white; padding: 2px; WIDTH: 162px; }
#tabs #page-list LI UL UL { MARGIN: -29px 0px 0px 162px }
Now I’m off to solve the next problem… At least I’m learning ??
Forum: Fixing WordPress
In reply to: Having problems with placing images in postoops used the wrong post – still have the image problem.
Forum: Fixing WordPress
In reply to: Having problems with placing images in postI found the solution. Needed to change the following:
Changed font size to 10px
#tabs ul li{ margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px; border-right: 2px solid #fff; font-size: 10px; font-family: Myriad, Myriad Pro, Arial, Palatino, Rotis Sans Serif, serif; letter-spacing: 0; TEXT-TRANSFORM: uppercase; }
Changed the font size to 10
#tabs UL LI.page_item A { PADDING-LEFT: 10px; PADDING-RIGHT: 10px; FONT-WEIGHT: bold; } #tabs UL LI.cat-item A { PADDING-LEFT: 10px; PADDING-RIGHT: 10px; FONT-WEIGHT: bold; }
I also had to change the following from 10em to 162px:
#tabs #page-list LI UL LI { LINE-HEIGHT: 32px; border: 1px white; padding: 2px; WIDTH: 162px; }
You started me4 in the right direction. Thanks. Hope this helps someone down the line.
boblan66 ??
Forum: Themes and Templates
In reply to: Need to Edit Tandil Templatemercime;
I made the change and The font size did not change. Here is the changes I made to the CSS file.
#tabs UL LI.page_item A {
PADDING-LEFT: 10px; PADDING-RIGHT: 10px; FONT-WEIGHT: bold;
}#tabs UL LI.cat-item A {
PADDING-LEFT: 10px; PADDING-RIGHT: 10px; FONT-WEIGHT: bold;
}Does it look ok to you?
Bob… :}
Forum: Themes and Templates
In reply to: Need to Edit Tandil Templatemercime;
Thanks for the infomation. I looked in the css file but missed it. Have you used this template? I’m having other problems and need to test to see of it’s the template causing the problems.Thanks again ??
Forum: Fixing WordPress
In reply to: Unable to make EditI made the change from upper to lower case for the directory name (BLOG to blog)and ensured the .htaccess file was correct. When I entered my username and password, it could not locate the blog.
I changed it back to uppercase and it found the blog ok, So that leaves me with the same problem.
Forum: Fixing WordPress
In reply to: Unable to make EditShane;
Here is a copy of my .htaccess file. Does it look ok?# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /BLOG/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /BLOG/index.php [L]
</IfModule># END WordPress
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress