Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Remove Sidebar on Product PagesIf you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:
- Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications
- (put your CSS code in)
- Save
#content { margin: 0 auto; }Keep in mind that this will affect your #content section ACROSS your entire site. You might have to get more specific (ie: .archive #content) if you only want to select that section in a certain instnace.
Forum: Fixing WordPress
In reply to: Theme button colorsIf you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:
Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
use its “CSS Code” section of the dashboard to hold your CSS modifications
(put your CSS code in)
SaveHave you tried the following? It looks like the buttons on your site have several styled effects, including box-shadow so you might need to adjust more than just the background-color.
input[type="submit"], button, .button, .bootstrap-button, input#submit, .da-slide .da-link, span.more a, a.read-more, .entry-content a.t4p-button-default { background: blue; }Forum: Fixing WordPress
In reply to: How do I horizontally align images in same row…How much experience with CSS do you have? Is the site live somewhere?
Forum: Fixing WordPress
In reply to: Remove Sidebar on Product PagesYour #content section has a very large right margin which is preventing your items from taking up the full width even though you’ve gotten rid of the sidebar using the page template changer.
Do you have any experience with CSS?
Forum: Fixing WordPress
In reply to: Remove sidebar if media queryThis resource could be helpful in understanding: http://www.sitepoint.com/javascript-media-queries/
You would be using JS to check to see the window/device width and creating a conditional (if-else statement) to input different combinations on content depending on that.
Forum: Fixing WordPress
In reply to: removing No Menu assigned!Are you still under support for your Salient theme? If so, I would contact the creator/support team.
Otherwise, you might be able to utilize CSS to hide the no-menu-assigned notice.
Is your site live somewhere?
Forum: Fixing WordPress
In reply to: I want to add blogs to my pagesPerhaps you could use tags or taxonomies to gather those archives as playlists?
Forum: Fixing WordPress
In reply to: Dropdown for menu heading – Twenty FifteenIt would depend on how the child theme was set up. Have you tried looking in the Menu area already (https://codex.wordpress.org/WordPress_Menu_User_Guide) to see if it’s already within that?
Is the site live anywhere?
Forum: Fixing WordPress
In reply to: Can't rearrange gallery imagesAre you utilizing a paid theme or a free? Which one?
When you create a gallery of images do you do it via the native Media Gallery?
Forum: Fixing WordPress
In reply to: Embed Youtube VideoAre you still covered for support from your theme’s creator? I would check with them to see if there is a bug to fix. Does the video show when you preview the page vs. when you update? Is there an empty spot where the video should be?
Forum: Fixing WordPress
In reply to: My entities have disappearedIt sounds like one of the plugins deleted was storing information related to tags, taxonomies or categories?
What do you mean by ‘entities’? Posts themselves?
Forum: Fixing WordPress
In reply to: title does not show upDo you have any experience adjusting/editing the php files of WordPress?
You would want to utilize something like: https://codex.wordpress.org/Function_Reference/single_post_title
What theme are you using (if it’s a premium one, perhaps they have an option you can toggle or you can contact them for assistance)
Forum: Fixing WordPress
In reply to: Using a filename as an image title on the pagePerhaps this link could help as a reference point?
http://clicknathan.com/web-design/title-attribute-on-images-in-wordpress/
Forum: Fixing WordPress
In reply to: How to Change the Order at the Bottom of Single.php Page?Have you tried moving:
<?php if(has_tag()): ?> <div class="kopa-tag-box"> <span><?php _e('Tags :','seramag_lite'); ?> </span> <?php the_tags('',' \ '); ?> </div> <?php endif;?>above where your article starts?
Forum: Fixing WordPress
In reply to: Category Link missingYou’d want to edit the Permalinks settings on your dashboard using %category% (https://codex.wordpress.org/Using_Permalinks)