Epic Widgets

Support Area Forums Epic Epic Widgets

Viewing 5 posts - 1 through 5 (of 5 total)
URL to the page in question:
  • Author
    Posts
  • #6260
    Philippine Seven
    Participant

    Hi Bill,

    I’d just like to ask if it’s possible to set the height of the count down timer widget to 100px and set the height of all the remaining widgets to 200px? Hoping for your immediate response. Thanks.

    #6265
    Philippine Seven
    Participant

    hi Bill! follow up on the above question please. thanks.

    #6292
    Bill Robbins
    Moderator

    I’m glad to help, but don’t get pushy. We’re far beyond the customization help that’s included in a theme purchase.

    You can use this CSS snippet to change the height to 100 pixels, though that will cause the timer to spill out. The widget normally will only take up as much vertical space as the content requires.

    
    #lct_widgetid-2 {
    	height: 100px;
    }
    

    You might try this. That will hide the title and background:

    
    #lct_widgetid-2 {
    	height: 70px;
    	overflow: hidden;
    	background: transparent;
    	-moz-box-shadow: none;
    	-webkit-box-shadow: none;
    	box-shadow: none;
    }
    
    #lct_widgetid-2 .widget-title {
    	display: none;
    }
    
    #6293
    Philippine Seven
    Participant

    Thank you Bill. I’m really sorry for being pushy. 🙂

    #6295
    Bill Robbins
    Moderator

    No problem. Take care.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Epic Widgets’ is closed to new replies.