Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #3639
    AiD
    Participant

    Hi,

    First of all, you made really great job with Simple Catch Pro! but I’m green in CSS and other web stuff so I have few questions.

    My page : http://www.poradnikniemowlaka.pl (still testing it)

    1. How can I change the font size for the H1 or H2 tags?

    This command doesn’t change it, don’t know why :

    h1 {font-size: 32px;}

    2. How can I change the font style for the H2 tag and for the menu nav bar?

    3. How can I change witdh for the menus in nav bar?  I want to move “Kontakt” menu to the right or to stretch all menus a bit to make it look good.

    4. How to change the height of post image and text box on main page?

    5. How I can turn off “comment’s box” for “Kontakt” page or other ?

    6. How I can change background in comment’s ?

    7. How I can change the font size and style in “Leave a comment”  and “1 comment, 2 comments, etc” above comments box for example here : http://www.poradnikniemowlaka.pl/?p=86

    Thanks !

    Darek

    #3646
    Sakin
    Keymaster

    Hello Darek,

    This is a long request. It would have been easier if you have break down your list in different thread.

    1. How can I change the font size for the H1 or H2 tags?
    — I have seen that you have already change the font size of heading of page title. For page title the css will be ad below:
    .entry-title { font-size: 18px; }
    For normal h1 and h2 you can use the following:

    h1 { font-size: 34px; }
    h2 { font-size: 22px; }

    2. How can I change the font style for the H2 tag and for the menu nav bar?
    — For menu bar font size change.
    #access ul li a { font-size: 13px; }

    3. How can I change width for the menus in nav bar? I want to move “Kontakt” menu to the right or to stretch all menus a bit to make it look good.
    — For this please “Custom Menu” features. See this http://en.support.wordpress.com/menus/
    To stretch them menu you can adjust the padding as needed
    #access ul li a { padding: 0 18px; }

    4. How to change the height of post image and text box on main page?
    — It is not recommended to change the height of the post image in the main page. For text box you can define the excerpt length through “Appearance -> Theme Options -> Theme Settings -> Excerpt / More Tag Settings. Increase the Excerpt Length.

    5. How I can turn off “comment’s box” for “Kontakt” page or other ?
    — You can turn off from though your “Discussion Box” in your page. See this http://en.support.wordpress.com/enable-disable-comments/

    6. How I can change background in comment’s ?
    — For post author background color
    .commentlist > li.bypostauthor { background-color: #DDDDDD; }

    — For others background color
    .commentlist > li.comment { background-color: #DDDDDD; }

    7. How I can change the font size and style in “Leave a comment” and “1 comment, 2 comments, etc” above comments box for example here : http://www.poradnikniemowlaka.pl/?p=86
    — For font size
    #comments-title, #reply-title { font-size: 25px; }

    For more please see the css tutorial http://www.w3schools.com/css/

    #3655
    AiD
    Participant

    Great, thanks!

    but still I can’t change the H1 and H2 font size and style ?

    I need H2 ~14px or 16px I think : “czyli jak przetrwać pierwszy rok życia dziecka !” a bit bigger.

    #3662
    Sakin
    Keymaster

    Hello Darek,

    The text ““czyli jak przetrwać pierwszy rok życia dziecka !” is not h2. It’s your site description. For that add the following css:
    #site-description { font-size: 16px; }

    Regards,
    Sakin

    #3677
    AiD
    Participant

    My mistake 😉

    Thanks a lot for help!

    Regards,

    D.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Few questions about fonts and menu tabs’ is closed to new replies.