Support » Theme: raindrops » Widget Title Vertical Alignment

  • Resolved Alpha Rho Lambda Sorority

    (@alpha-rho-lambda-sorority)


    I recently updated the Raindrops theme and didn’t notice that it forced my widget titles to be flush with the bottom margin of the widget title background.

    I want the vertical alignment of my widget titles to be centered in the middle of the widget title background.

    Can anyone tell me how to do this?

    My site:

    http://alpharholambda.net

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author nobita

    (@nobita)

    Hi Alpha Rho Lambda Sorority

    Thank you for pointing out a problem

    Please change style rules.

    style.css line:722

    .footer-widget h2,
    .rsidebar h2,
    .lsidebar h2,
    .widgettitle h2,
    h2.footer-content {
    	height:17px;
    	text-indent:.5em;
    	/*font-size:116%; em issue*/
    	padding:5px 0;
    	font-family:Geneva, Arial, Helvetica, sans-serif;
    	margin-bottom:0;
    }

    change padding value like below

    .footer-widget h2,
    .rsidebar h2,
    .lsidebar h2,
    .widgettitle h2,
    h2.footer-content {
    	height:17px;
    	text-indent:.5em;
    	padding:0 0 10px;
    	font-family:Geneva, Arial, Helvetica, sans-serif;
    	margin-bottom:0;
    }

    padding value chage from 5px 0 to 0 0 10px.

    Thread Starter Alpha Rho Lambda Sorority

    (@alpha-rho-lambda-sorority)

    Thanks so much – that completely worked!

    First I changed the padding value, which didn’t work. However, then I noticed that I needed to delete:

    /*font-size:116%; em issue*/

    Once I removed that, it corrected the vertical alignment.

    Needed this too. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Widget Title Vertical Alignment’ is closed to new replies.