Hello I just started using rainmeter so I'm not too familiar with the coding aspect. Im trying to shrink the black border on my clock but I'm not sure on how to do so. If I shrink the borders in the BackgroundMargins section it does shrink but there's a small gap if I try to put it in the top right corner. I even shrunk the background image but that didn't really change anything
https://ibb.co/B4pbP4F https://ibb.co/w4vZQkp
If anyone can help fix my code or tell me whats wrong that would be great.
https://ibb.co/B4pbP4F https://ibb.co/w4vZQkp
If anyone can help fix my code or tell me whats wrong that would be great.
Code:
; Lines starting ; (semicolons) are commented out.; That is, they do not affect the code and are here for demonstration purposes only.; ----------------------------------[Rainmeter]; This section contains general settings that can be used to change how Rainmeter behaves.Update=1000Background=#@#Background.jpg; #@# is equal to Rainmeter\Skins\illustro\@ResourcesBackgroundMode=3BackgroundMargins=0,0,0,0[Metadata]; Contains basic information of the skin.Name=ClockAuthor=poiruInformation=Displays the current date and time.License=Creative Commons BY-NC-SA 3.0Version=1.0.0[Variables]; Variables declared here can be used later on between two # characters (e.g. #MyVariable#).fontName=Trebuchet MStextSize=8colorBar=235,170,0,255colorText=255,255,255,205; ----------------------------------; MEASURES return some kind of value; ----------------------------------[measureTime]; This measure returns the time in a 24-hour format (i.e. HH:MM).Measure=TimeFormat=%I:%M %pTimeZone=-7; For a 12-hour clock, change the Format option above to: %I:%M %p; Refer to the Rainmeter manual for other format codes.[measureTime2]; This measure returns the time in a 24-hour format (i.e. HH:MM).Measure=TimeFormat=%I:%M %p; For a 12-hour clock, change the Format option above to: %I:%M %p; Refer to the Rainmeter manual for other format codes.[measureDate]; Returns the date as DD.MM.YYYYMeasure=TimeFormat=%B/%d/%Y[measureDate2]; Returns the date as DD.MM.YYYYMeasure=TimeFormat=%m/%d/%Y[measureDate3]; Returns the date as DD.MM.YYYYMeasure=TimeFormat=%B/%d/%YTimeZone=-7[measureDate4]; Returns the date as DD.MM.YYYYMeasure=TimeFormat=%m/%d/%YTimeZone=-7[measureDay]; Returns the current dayMeasure=TimeFormat=%ATimeZone=-7[measureDay2]; Returns the current dayMeasure=TimeFormat=%A; ----------------------------------; STYLES are used to "centralize" options; ----------------------------------[styleTitle]StringAlign=CenterStringCase=UpperStringStyle=BoldStringEffect=ShadowFontEffectColor=0,0,0,50FontColor=#colorText#FontFace=#fontName#FontSize=10AntiAlias=1ClipString=1[styleLeftText]StringAlign=Left; Meters using styleLeftText will be left-aligned.StringCase=NoneStringStyle=BoldStringEffect=ShadowFontEffectColor=0,0,0,20FontColor=#colorText#FontFace=#fontName#FontSize=#textSize#AntiAlias=1ClipString=1[styleRightText]StringAlign=RightStringCase=NoneStringStyle=BoldStringEffect=ShadowFontEffectColor=0,0,0,20FontColor=#colorText#FontFace=#fontName#FontSize=#textSize#AntiAlias=1ClipString=1; ----------------------------------; METERS display images, text, bars, etc.; ----------------------------------[MeterTitle]Meter=StringMeterStyle=styleTitleX=100Y=12Text="ARIZONA"[MeterTitle2]Meter=StringMeterStyle=styleTitleX=100Y=85Text="MANILA"[meterTime]Meter=StringMeterStyle=styleTitle; Using MeterStyle=styleTitle will basically "copy" the; contents of the [styleTitle] section here during runtime.MeasureName=measureTimeX=100Y=30W=190H=18Text=%1; %1 stands for the value of MeasureName (measureTime in this case).[meterTime2]Meter=StringMeterStyle=styleTitle; Using MeterStyle=styleTitle will basically "copy" the; contents of the [styleTitle] section here during runtime.MeasureName=measureTime2X=100Y=105W=190H=18Text=%1; %1 stands for the value of MeasureName (measureTime in this case).[meterDay]Meter=StringMeterStyle=styleLeftTextMeasureName=measureDayX=80Y=50W=190H=14Text=%1[meterDay2]Meter=StringMeterStyle=styleLeftTextMeasureName=measureDay2X=80Y=125W=190H=14Text=%1[meterDate]Meter=StringMeterStyle=styleRightTextMeasureName=measureDateX=200Y=140W=190H=14Text=%1[meterDate2]Meter=StringMeterStyle=styleRightTextMeasureName=measureDate2X=100Y=140W=190H=14Text=%1[meterDate3]Meter=StringMeterStyle=styleRightTextMeasureName=measureDate3X=200Y=65W=190H=14Text=%1[meterDate4]Meter=StringMeterStyle=styleRightTextMeasureName=measureDate4X=100Y=65W=190H=14Text=%1
Statistics: Posted by weird_paprika — Yesterday, 6:53 pm — Replies 1 — Views 49