Daniel Zhao
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Pilot Fish] GalleryHi Cajewi,
You can disable the picture background for Featured Area first, by change these from style.css:
/* Featured Content */ #featured { /* background-attachment: fixed; background-image: url(images/home_banner.jpg); background-repeat: no-repeat; background-position: center top; */ height: 380px; display: block; text-align: center; }then you can embed your gallery in the home.php file. If you need more help, please tell me your email so I can send you screenshots π
Forum: Themes and Templates
In reply to: [Pilot Fish] Need to remove "posted on"to remove the “Posted on XXXXXXX by admin”, you can add this to the style.css:
.page footer.post-data .post-meta { display: none; }Hope it helps π
Forum: Themes and Templates
In reply to: [Pilot Fish] Change "Featured Area Text"you can select a page’s template as “Blog Posts”, then all your blog posts will show up on the page.
Forum: Themes and Templates
In reply to: [Pilot Fish] Remove "Back to top"just add to the end of the style.css file this:
.scroll-top { display: none; }you can find the style.css file from the Dashboard, under Appearance > Editor
Forum: Reviews
In reply to: [Pilot Fish] Very nice theme!Thank you π
Can you tell me more about the header image not shown in IE8? I’ll check and see if I can fix it in the next theme update.
Forum: Themes and Templates
In reply to: [Pilot Fish] Shortcodes not workingI tried contact form 7 (http://contactform7.com/) with my theme and it worked on both posts and pages. Is this also the one you use? Or can you provide me with a screenshot so I can see if there’s any problem?
Forum: Themes and Templates
In reply to: [Pilot Fish] Home Page ImageYou can change the home page picture through FTP, softwares like FileZilla will do.
Forum: Reviews
In reply to: [Pilot Fish] Plantilla Hermosa e Interesante. Responsive Design – AdaptableΒ‘Gracias!
Forum: Themes and Templates
In reply to: [Pilot Fish] Change "Featured Area Text"it’s in the sidebar-home.php and home.php file.
Forum: Themes and Templates
In reply to: [Pilot Fish] Responsive formattingHey, thanks for bring this problem to my attention, it’s a really important one. Unfortunately this is something I’m gonna have to deal with in the next release. In the meantime, I’ll try to come up with a quick fix for your particular case. I’ll contact you soon with any progress I make. Thank you π
Forum: Themes and Templates
In reply to: [Pilot Fish] link on "featured one"you can modify the file sidebar-home.php to add links.
Forum: Reviews
In reply to: [Pilot Fish] Beautiful!Thank you ^^
Forum: Reviews
In reply to: [Pilot Fish] Beautiful layout, nicely responsiveThank you π
Hi Jana,
I think you did something different than what I said, because I cannot load your site now, even in firefox. Would you like to create a login and password for me on your site instead, so I can take a look at it and fix the issue?
you can email the login and password to me at danniizhao@gmail.com
In the style.css, find this part:
/* Primary Navigation */ /* Style Primary Navigation Specific to viewport width */ @media (min-width: 481px) { #access .menu { clear:both; margin:0 20px; }and add “screen and” after @media, so it will be like this:
/* Primary Navigation */ /* Style Primary Navigation Specific to viewport width */ @media screen and (min-width: 481px) { #access .menu { clear:both; margin:0 20px; }hope this works~