Rizqy Hidayat
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Padhang] Drop down triangle disappears when switching site URLHi,
have you tried on other browsers? Have you tried to reinstall the theme too?Regards.
Forum: Themes and Templates
In reply to: [Padhang] Change video content positionHi,
have you set up your home, with background and the video you want? So I can help you further.Thanks.
Forum: Themes and Templates
In reply to: [Padhang] Change video content positionOf course that wouldn’t, that’s just an example. Change the selector (
#video
) to one represents your video. I found that your site haven’t displaying the video yet, so I can’t help more.Forum: Themes and Templates
In reply to: [Padhang] Make Logo BiggerHi,
you can customize using custom CSS. If you have Jetpack installed and Custom CSS module activated, go to Appearance -> Edit CSS. Otherwise You can install Simple Custom CSS plugin.
The code:.site-branding { width: 100%; } .site-logo { max-width: 100%; }
Make sure you’re image is big enough, so it doesn’t blurry. ??
Regards.
Forum: Themes and Templates
In reply to: [Padhang] incompatible with bbpress and Buddypress?Hi,
yes, currently I haven’t tested it with bbpress/buddypress. I’ll try to look after it.Regards.
Forum: Themes and Templates
In reply to: [Padhang] Remove "Powered by WordPress" footerHave you followed the codex page? And have you tried creating a child from other theme?
Forum: Themes and Templates
In reply to: [Padhang] Footer widget on mobileYep, just like what I see in my local. ??
Forum: Themes and Templates
In reply to: [Padhang] Change video content positionHi,
you can achieve that using custom CSS. To centering video, you can usemargin: 0 auto
, e.g.#video { width: 720px; margin: 0 auto; }
To minimize space between menu and content, just
display: none
the.site-branding
, e.g..site-branding { display: none; }
And so the powered text:
.powered { display: none; }
Hope it helps. ??
Regards.
Forum: Themes and Templates
In reply to: [Padhang] Footer widget on mobileHi,
thanks for noticing me, will fixed in next update. Btw, your screenshot link is broken. ??Regards.
Forum: Themes and Templates
In reply to: [Padhang] Remove "Powered by WordPress" footerHi,
you can just copy footer.php to you child theme folder, and remove line 30-34 of that file.Regards.
Forum: Themes and Templates
In reply to: [Padhang] Comments on home pageHi,
you mean the comment form want to be appeared right after each post? Or just a link that will go to single post?Regards.
Forum: Themes and Templates
In reply to: [Padhang] Background image is darkerHi,
the default opacity for overlay is 70. Try to change it to 0 from the customizer.Regards.
Forum: Themes and Templates
In reply to: [Padhang] Image HeaderAre you using IE? If yes, my apologize, currently I hadn’t tried Padhang in IE. And another user has found that Padhang break layout in IE. I’ll try to fix this IE things and update it soon.
Thanks.
Uh, seems bad. I’ll try to work for IE fix soon. Thanks for noticing me cause I had not try it in IE yet.
Forum: Themes and Templates
In reply to: [Padhang] Setting a Header ImageCurrently I have no plan to re-implement custom header. But if you still want to, you can use custom CSS to apply an image as a background for the header.
If you have Jetpack installed, you’re good to go. Otherwise, you can install Simple Custom CSS plugin. Next, use this base CSS to start styling your header:
.site-header { background: url(url/to/image.jpg); }
This page has a good explanation about CSS backgrounds. Have fun! ??