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
    Participant

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

    Regards,
    Mahesh

    #110937

    Hi! ๐Ÿ™‚

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

    // Peter ๐Ÿ™‚

    #110985
    Mahesh
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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
    Participant

    @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.