Allison Tarr
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [zeeDynamic] Removing the headerThe first section will hide the Site Title and Description from view.
The second gets rid of that 1px of white space above your custom banner.#logo .site-title, #logo .site-description { display:none; } #custom-header { margin-top: 0; }Forum: Themes and Templates
In reply to: [Pho] Trying to add an icon on a pageIt looks like because you added in a new block, the margins that are already set are upsetting the balance, so to speak.
I think your first image on every row shouldn’t have margin-left set but the other ones should to space them out uniformly; does that make sense?
Forum: Fixing WordPress
In reply to: How to Change size, move navigation bar, increase video size.To center your nav, add:
.nav-primary { text-align: center; }The content is set at ~67% so you would want to set that to your desired width (ie: 100%):
.content { width: 100%; }Your showreel video size is something that can be shifted depending on how you embedded it from YouTube (within the code there is a width=”560″ height=”315″ setting which is how you would increase it). Be careful of the ratio so it doesn’t skew oddly.
Forum: Fixing WordPress
In reply to: Reviews as comments or its own cpt…Could you use the CMB2 plugin to create a review form that could be submitted & use that information elsewhere on the site?
Forum: Themes and Templates
In reply to: [Zerif Lite] css files from my file managerIdeally, you would want to create a child theme because otherwise anytime you update the theme, it will wipe out any customizations you’ve made.
This outlines the process pretty well! (https://codex.wordpress.org/Child_Themes)
Forum: Themes and Templates
In reply to: [zeeDynamic] Removing the headerIs there a link to the live site?
Forum: Themes and Templates
In reply to: which theme? holiday cottage website?Plugins are a way to add functionality that might not exist within a theme. For instance, a certain type of contact form or photo gallery might be something you add to a theme via a plugin.
Forum: Themes and Templates
In reply to: [Pho] Trying to add an icon on a pageI think you need to add the class of “top” to your image to get the style to match (at least in regards to the opacity issue).
That would look like:
<img class="top" src="http://thais-breton.com/wp-content/uploads/2015/10/XCENTRIC-0.jpg" alt="XCENTRIC-0" width="390" height="219" class="alignnone size-full wp-image-839" />Forum: Themes and Templates
In reply to: which theme? holiday cottage website?Have you already checked out WordPress’s (free) themes? Depending on what you’re looking for, that might be a good starting point.
Forum: Fixing WordPress
In reply to: Images won't centre/align properlyYour photos are larger than the set “container” – so one option would be to adjust the container size to fit the photo size.
div.container { max-width: 920px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }If you change the max-width value of the above to 1024px, it should have enough room to center the image.
Forum: Fixing WordPress
In reply to: WP moved to a localhost and not showing all contentDepending on how you went about the import, you would still need to move your content (https://codex.wordpress.org/Tools_Import_SubPanel) using the corresponding Import option under the Tools menu.
You would also need to copy/paste your theme into your “themes” folder within your localhost file structure for it to appear as an option to switch to under the Themes setting.
Forum: Fixing WordPress
In reply to: Images won't centre/align properlyIs there a live URL to an example of the issue?
Forum: Fixing WordPress
In reply to: Affiliate links with htmlAre you copying & pasting information provided from your affiliate? It’s possible that code has an error, in which case they would be the best to contact.
Is it happening across the board with separate links?
This is the code for what a link would look like:
<a href="url">link text</a>This is the code for displaying an image:
<img src="pic_mountain.jpg" alt="Mountain View" style="width:304px;height:228px;">Combined it would be something like the following (with the image replacing the link text:
<a href="url"><img src="pic_mountain.jpg" alt="Mountain View" style="width:304px;height:228px;"></a>Forum: Themes and Templates
In reply to: Wrong dateIs that the date that displays when you save the post as well in your dashboard or does it only appear on the outward facing site?