oldunclechalex
Forum Replies Created
-
Forum: Themes and Templates
In reply to: change header size in 2010_child themeI solved the problem. I was almost right, the only issue I forgot about was to declare php in the beginning
<?php define( 'HEADER_IMAGE_WIDTH', apply_filters( 'twentyten_header_image_width', 940 ) ); define( 'HEADER_IMAGE_HEIGHT', apply_filters( 'twentyten_header_image_height', 614 ) );
Now it works.
Forum: Themes and Templates
In reply to: rounded corners for menu in 2010 themeSorry, try to remember…it is because I really old)))
Forum: Themes and Templates
In reply to: rounded corners for menu in 2010 themeDear esmi, thank you very much!
It works(exept IE, of course)!
I remember your previous advice and experiment with my child_2010.
Forum: Themes and Templates
In reply to: one column no sidebar does not work in the child themeI felt that somthing is wrong with that
margin: -240px
I removed it and one column stood correct.
But the sidebar went wrong!!!Forum: Themes and Templates
In reply to: one column no sidebar does not work in the child themeThat CSS is quite simple: just moves sidebar region from right to left!
#container { float:right; margin:0 -240px 0 0; width:100%; } #primary, #secondary { float:left; overflow:hidden; width:220px; }
Forum: Themes and Templates
In reply to: the left sidebar instead of the right oneThanks to all, I have created a new child theme and changed css. It works!
Forum: Themes and Templates
In reply to: the left sidebar instead of the right oneThanks to all, I am in process of changing…
Forum: Fixing WordPress
In reply to: site description in 2010 themeThank you very much, it works!
Forum: Fixing WordPress
In reply to: site description in 2010 themeI modified header.php like this
<div id="site-description"><a href="https://www.mysite.com"><?php bloginfo( 'description' ); ?></a></div>
It works both in main and in child theme. Now I need to copy the modified file to child theme catalogue?Forum: Fixing WordPress
In reply to: site description in 2010 themeThanks a lot! I managed to create a child theme with another style.css file.
But this problem can be solved not with help of css. I guess I need to change the data in my database. Please,advise how to proceed!