axelya
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Autofocus theme modification issuesin this template classes added to different section of it.
class home added to home page, class single – to single post page and so on.
then in style.css you can see code
.home #container #nav-above .nav-previous
which makes it for home page only. For individual post page look for line started with .single
Regarding the arrow – it is functional if scroll down a bit then it is works. I guess it is just overlapped by container
Forum: Themes and Templates
In reply to: Remove underline from image linkstry to add .textwidget a{border:none}
Forum: Themes and Templates
In reply to: Autofocus theme modification issuesThe number of posts on the front page could be changed in admin settings panel.
Forum: Themes and Templates
In reply to: white line help!I can’t see where this line comes from, but your markup is very odd and you have many errors in your document. It might be that the line appears due to odd codding. You have closing tags for TR and TABLE and I can’t see them opened.
Just thoughtsForum: Themes and Templates
In reply to: Would like to know if there is a fix for my problem..It is not a simple fix. You need to redesign your theme giving each div width in px. Now it is measured in %. For example : #sidebars{
float: left;
width: 22%;
position: relative;
}
If you give it fixed width 220px , for instance, then it won’t move. But you need to make change to every div and this is a lot of work.Another way is to leave things as they are, but add min-width property to containers. learn about min-width, max-width and fluid design.
MichaelForum: Fixing WordPress
In reply to: using templates for specific pagesForum: Fixing WordPress
In reply to: Hebrew charachters as “????” in commentsLook into your database settings and check the collation. I’ve never worked with Hebrew, but I guess utf8_general should be fine
Forum: Fixing WordPress
In reply to: How to change the thumbnail crop position?I was curious how wp handles that and I found that you can create a custom thumbnail for each image. When you upload image to the media library you can crop it us you wish and save for thumbnail. Just try it
Forum: Fixing WordPress
In reply to: How can I manipulate sidebar items?difficult to give the answer without seeing the theme, but I thing for sure – all you need is to make changes in style.css
you can increase margin-top to the first div in sidebar or place an empty div with fixed height in your sidebarForum: Fixing WordPress
In reply to: Front Page Showing Full Postsdo you use the_excerpt() instead of the_content() in your front page ?
Forum: Fixing WordPress
In reply to: Getting Parse error: syntax error,you need to upload the original or previously working function.php file via FTP to the theme directory.
The code you pasted contains some PHP error – missing ) or }
Forum: Fixing WordPress
In reply to: Loading javascript on chosen page ( conditionally )Zeo, thanks for the link! I can see that I did it right.
I might say – resolvedForum: Fixing WordPress
In reply to: Loading javascript on chosen page ( conditionally )Thank you guys ! I have tried Zeo’s way before posting my question. It doesn’t load scripts.
I solved this by replacing add_action(‘init‘,’my_map’) with
add_action(‘wp_print_scripts‘, ‘my_map’)It loads scripts only on chosen page in footer.
As I am new to all this stuff and I am not a PHP-guy, I am not sure it is proper use of actions and all. I need to learn more about wp_print_scripts
Forum: Fixing WordPress
In reply to: Loading javascript on chosen page ( conditionally )racer x, thank you for the answer! I tried this way, but it doesn’t catch.
I tried to place it in different places and include add_action into condition. Nada.
add_action ignores conditional tag and loads it on any page.If this way suppose to work, then I am missing something here. Otherwise, need another approach.
Forum: Themes and Templates
In reply to: Auto Focus ProblemAlso, is there any way to position how the pictures appear in the thumbnails shown on the homepage?
on homepage images are background images.
in home.php you can see line with “background: url……..center center repeatI believe if you play with background properties – center top bottom 50% 0 etc. you should change the position.
regarding dates you need to remove the code from home.php
look for big date and play