Tagged: 

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #110829

    Hi! πŸ™‚

    I think that you have great themes! πŸ™‚

    Please help me with some CSS code for this Lucida theme:

    1. To be able to change the size and position of the title.

    2. To be able to change the size and position of the slogan – which are under the title.

    3. To be able to change the contrast colour, which are in Read more… Hover of the title, Hover of the menu etc.

    You have also very good service! πŸ™‚

    Thanks! Peter πŸ™‚

    #110862
    Mahesh
    Keymaster

    @peterdroginformation-nu: Please post in your site url.

    Regards,
    Mahesh

    #110937

    Hi! πŸ™‚

    Building up a site here now: http://droginformation.info/

    // Peter πŸ™‚

    #110985
    Mahesh
    Keymaster

    @peterdroginformation-nu: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:
    1. To be able to change the size and position of the title.

    .site-title {
        font-size: 40px;
    }

    2. To be able to change the size and position of the slogan – which are under the title.

    .site-description {
        font-size: 20px;
    }

    Where do you want to put the title (position)

    3. To be able to change the contrast colour, which are in Read more… Hover of the title, Hover of the menu etc.

    /* Site Title Hover color */
    .site-title a:hover {
        color: #ff00ff;
    }
    
    /* Menu Hover color */
    .lucida-nav-menu a:hover, 
    .lucida-nav-menu a:focus {
        color: #ff00ff;
    }
    
    /* Read more / links Hover color */
    a:hover, 
    a:focus, 
    a:active {
        color: #ff00ff;
    }

    Regards,
    Mahesh

    #111403

    Ok, thanks a lot Mahesh! πŸ™‚

    Do you also have a code for changing the position of the title and slogan, I want to put them to the left.

    Thanks in advance! πŸ™‚ Peter

    #111425
    Mahesh
    Keymaster

    @peterdroginformation-nu: Add the following CSS:

    #site-branding {
        text-align: left;
    }

    Regards,
    Mahesh

    #112714

    Thanks Mahesh! πŸ™‚

    Can you please also help me with the following CCS code.

    Sizes of the following:

    POST

    Title

    h2

    h3

    h4

    Distance between paragraphs

    PAGE

    Title

    h2

    h3

    h4

    Distance between paragraphs

    Thanks a lot! πŸ™‚

    // Peter πŸ™‚

    #112766
    Mahesh
    Keymaster

    @peterdroginformation-nu: For both Post and Page, same value is used.
    Title => 38px
    h2 => 28px
    h3 => 22px
    h4 => 20px
    Line Height => 1.75

    Regards,
    Mahesh

    #113085

    Ok, I understand.

    Sorry for being unclear on this.

    I need to be able to change these values.

    Can you please give CSS code so that I can change them? πŸ™‚

    Sizes of the following:

    POST

    Title

    h2

    h3

    h4

    Distance between paragraphs

    PAGE

    Title

    h2

    h3

    h4

    Distance between paragraphs

    Thanks in advance! πŸ™‚

    #113110
    Mahesh
    Keymaster

    @peterdroginformation-nu:

    h1, .entry-title, .page-title, #featured-content #featured-heading {
        font-size: 38px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    h3 {
        font-size: 26px;
    }
    
    h4 {
        font-size: 20px;
    }
    
    body {
        line-height: 1.75;
    }

    Regards,
    Mahesh

    #113125

    Ok, thanks a lot for this! Peter πŸ™‚

    #113156
    Mahesh
    Keymaster

    @peterdroginformation-nu: Thank you for your appreciation. Have a nice day.

    Regards,
    Mjs

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘CSS code needed’ is closed to new replies.