AC
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Removing an imported backup from my siteBecause the theme information is saved in a completely different place then other data.
The selection you should make will like have something to do with post or postmeta.
Forum: Themes and Templates
In reply to: [Graphene] Help for a newbie.Hi,
Do you think you can post your url?
ThanksForum: Themes and Templates
In reply to: Removing an imported backup from my siteHi
You might try this plugin WordPress Database Reset https://www.ads-software.com/plugins/wordpress-database-reset . It will let you pick which aspects of your database you will like to delete. But you should be careful because you can intentionally delete all of your data.Let me know if this works or you have any issues.
Forum: Themes and Templates
In reply to: [Link] Menu in upper right corner – move down a bitI just took a look at the site and I don’t see any change made even in Firefox. The code still reads as top:20px. Are you sure you added the new code and updated it?
Forum: Themes and Templates
In reply to: [Bold Headline] How to change the color of topic separator.Change this code as well
#primary { border-bottom: 1px solid #DDD; }
Forum: Themes and Templates
In reply to: [Bold Headline] How to change the color of topic separator.Yeah. But instead of changing it in the style.css. I would install the custom css plugin ( https://www.ads-software.com/plugins/simple-custom-css/) and add the code there. That way you will still be able to update the theme and keep your changes.
Forum: Themes and Templates
In reply to: [Bold Headline] How to change the color of topic separator.Hi
Great question. The following code will change the separator color. Just change the rgba to whatever color you wish.hentry { border-top: 1px solid rgba(203, 24, 24, 1); }
Let me know if you need anymore help.
-A.C
Forum: Themes and Templates
In reply to: [Link] Menu in upper right corner – move down a bitHi Micheal,
You can move the menu down a little by adding the following CSS to your custom CSS area.
#menuToggle { top: 30px; }
Let me know if you have any other questions.
Good Luck,
ACForum: Themes and Templates
In reply to: [Expound] No Images Index PageHi Kertoon,
I have a question, did you make the images you want to show in the index your featured image?Forum: Themes and Templates
In reply to: [NewMedia] Change the title sizeHi Cartagiov,
You definitely should be. Though it might be easier for us to help if you provided your URL.Forum: Themes and Templates
In reply to: Weird Theme Adsense ProblemHi Anythony,
Interesting question, have you tried using an adsense plugin? This can help to rule out whether there is something in your theme’s code that is interfering with adsense, I like https://www.ads-software.com/plugins/google-adsense-for-responsive-design-gard/.But before that I would also try to see if the adsense code works with the default twenty-twelve theme.
Hope this helps,
ACYou can get rid or respond two ways
if you want to do it site wide
#respond {
display:none;
}Or on each page by going up to the screen options area on the page editor clicking discussion box- scroll to discussion and uncheck the comment box.
To delete the boxes on the right go to widget and takeout all the items in the widget area – if there are no items add the text widget item to the area and leave the widget blank.
Hope this helps
Forum: Themes and Templates
In reply to: How to remove tagline section from Origin theme?#site-description
{
border-top:#000000 !important;
}
Try that – if it doesn’t work remove all the new code so I can see the original site.Forum: Themes and Templates
In reply to: How to Remove pixel contraints for Image in HeaderYou probably should be working with a child theme but change the follow code height should work
top-tools h1 a {
height: 36px;
}Forum: Themes and Templates
In reply to: How to remove tagline section from Origin theme?#site-description
{
display:none !important;
}
and either
#site-description {
border-bottom: none !important;
}
or
.home #site-description {
border-bottom: none !important;
}
Let me know if that helps