paulwpxp
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Laundry themeThe first question is not possible to discuss here, it depends on many factors, it’s best to write up a complete job description first and then ask around. In case you’re not aware of, this forum is not for that purpose though, this forum is only for WordPress users helping around the community.
For the 2nd question; yes of course it would be responsive theme, when we work on new project we should build the site based on most recent theme, and I think it’s safe to say that all of them nowaday are responsive, work across all devices width.
Forum: Themes and Templates
In reply to: 2016 Header Image and Navigation@mrcangrejero it’s my pleasure, and the same to you 🙂
Forum: Themes and Templates
In reply to: [Sydney] Sydney 1.25 incompatible with Internet ExplorerBill, I honestly have no clue, part of that is because I gave up on IE long time ago but this particular problem is interesting because IE11 and Edge are the new thing all together it’s supposed to behave like other modern browsers.
I hope the theme author could fix this, this theme is a nice one and lots of people are using it.
Forum: Themes and Templates
In reply to: Position Image next to tableQuick fix is to assign display inline to the
<table>, and prevent auto<p>injected around<img>tag by WP, we do this by bring up the<img>tag next to the closing</table>tag.So we will have this
<table style="display:inline;"> </table><img>But the site is responsive thus the right way is to put in extra divs so it works as 2 columns with custom CSS for it to collapse in certain breakpoint.
Forum: Themes and Templates
In reply to: [Sydney] Sydney 1.25 incompatible with Internet ExplorerBill, you were right, it does not scroll down all the way to the bottom, this happens in both IE11 and Edge. I really have no idea what the problem is.
Forum: Themes and Templates
In reply to: how to change the font color on the image captionThe caption text appears invisible to me as you said, white text on white. The reason you didn’t see the change could be your browser cache, so try clearing your browser cache, I normally do Ctrl+F5 a couple times.
This is support forum for the theme you are using
https://wordpress.org/support/theme/senses-liteso next time you could post the question regarding this theme there, theme author and people using this same theme would see it more and get more chance being helped.
Forum: Themes and Templates
In reply to: [Fifteen] Remove Navigation Menu@hyrnrg , to achieve that I think it’s easier to remove top menu and reposition secondary menu to the top. I suggest posting this question on its own so it’d get noticed and I’m sure someone be able to help with the code.
Post the question regarding this theme here
https://wordpress.org/support/theme/fifteenForum: Themes and Templates
In reply to: 2016 Header Image and NavigationTry putting this in your child theme style. It will display level with header image.
/** * Resposition menu in screen >= 910px */ @media screen and (min-width: 910px) { .site-header-menu { position: relative; top: 135px; } } @media screen and (min-width: 985px) { .site-header-menu { position: relative; top: 150px; } } @media screen and (min-width: 1100px) { .site-header-menu { position: relative; top: 170px; } } @media screen and (min-width: 1200px) { .site-header-menu { position: relative; top: 185px; } }Maybe there is a better way, but this is what I can come up with right now.
Forum: Themes and Templates
In reply to: Laundry themeYes, go with simple minimalistic theme, Twenty Sixteen is a good one, and create a custom front landing page. For the ordering/paying, we must use a plugin like WooCommerce. The product listing page can be customized to look like wiltongreen one with custom CSS.
Forum: Themes and Templates
In reply to: Location of image files when using child themeWe have to get to the source code see to it how that image get called. The image might get called by code from parent theme that uses parent theme path.
This function return parent theme path
https://codex.wordpress.org/Function_Reference/get_template_directoryThis is for child theme
https://codex.wordpress.org/Function_Reference/get_stylesheet_directorySome theme is not that child theme friendly, or maybe it’s not something that theme author expects to get change so it uses parent theme path.
Forum: Themes and Templates
In reply to: [Sydney] Sydney 1.25 incompatible with Internet ExplorerFYI I tested the site in both IE11 and MS Edge, the site scrolls fine.
Forum: Themes and Templates
In reply to: Can i update my Child theme without worrying?Have you done any changes to any of them? If the answer is no, then you can update themes without worrying. If you have done some changes to your child theme, updating child theme might replace those changed files and you will lose your modifications.
If not already yet, download both current themes and keep it somewhere safe, then update both themes, if something went wrong you can always re-upload the old version of themes.
FYI, this is Appointment Green support forum, posting question in there has more chance to get direct answer from theme author.
https://wordpress.org/support/theme/appointment-greenForum: Themes and Templates
In reply to: How to make a beautiful project gallery?The page the OP linked to is a WP page with probably a shortcode by a third party plugin put in the content.
This is in the source code
<div id="dt-postwall" class="dt-postwall-grid">So you could do a little googling “dt-postwall” and get to that same exact plugin used on that page.
But do we need that specific plugin to do this? No we don’t. We can do this with native WP gallery shortcode.
https://codex.wordpress.org/Gallery_Shortcode
https://codex.wordpress.org/The_WordPress_Gallery
- Select link to none (so the image doesn’t link to anything).
- Put in the hyper-linked caption text to act as project name.
- Also some CSS to add in the hover effect thing.
There are few other ways too, instead of using page, use post archive page. Tag or categorize your posts, and use this tag/category archive page as project listing, but this you have to find a theme that pull-up post with feature image and post name only.
The other way is to use a plugin like Display Post Shortcode, a little hard to figure out how to use, but not too hard though, and then add some optional CSS.
https://wordpress.org/plugins/display-posts-shortcode/Forum: Themes and Templates
In reply to: Two customization questions regarding the tag templateIt’s all good, Dave.
Forum: Themes and Templates
In reply to: Remove Masthead from Blog pagePalmer theme doesn’t ring the bell, also can’t find it via google search, but anyway this forum is only for themes hosted here at WordPress.org.
You can go with the CSS display none targeting that image based on Body Class.