WP Libra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website HackedYou can start by following http://codex.wordpress.org/FAQ_My_site_was_hacked
Forum: Themes and Templates
In reply to: [Diginews] Hiding tags in postFor permalinks go to Options -> Permalinks and select an option that doesnt include tags or a custom one like /%postname%/
Forum: Themes and Templates
In reply to: [Customizr] Half Width SliderThere is nothing that explains specifically how to do this. You pretty much need to learn HTML/CSS. If you want an easier way to do a layout on a site search for visual composer as a paid option.
Forum: Fixing WordPress
In reply to: Changing a wordpress user to an adminTo change your user to an admin that has to be done via the database and thats what you need phpmyadmin for.
The other items can be done easier if you have admin access.
Forum: Fixing WordPress
In reply to: newbie needs help with editing basic page!Same place. These are just CSS changes.
Forum: Fixing WordPress
In reply to: newbie needs help with editing basic page!No need to pay. This support forum is for free.
Moving the menu would be hard. Maybe making the pictures start below the menu would be easier.
Try
#supersized li { top: 70px; }Forum: Fixing WordPress
In reply to: newbie needs help with editing basic page!The below should hide it. Can you link to what page you still see it on with that code in style.css?
.main-container { display: none; }Forum: Themes and Templates
In reply to: [Diginews] Hiding tags in postAppearance -> Editor
Select content.php
Find
<span class="tag-links"> <?php printf( __( 'Tagged %1$s', 'diginews' ), $tags_list ); ?> </span> <span class="sep"> | </span>Comment it out or delete it. That will just remove all the tag outputs.
Forum: Themes and Templates
In reply to: [Customizr] Half Width SliderYou aren’t stuck with anything and anything is possible when it comes to working with the layout and creating a template.
Forum: Themes and Templates
In reply to: How to install a template?No difference between the 2.
Log into wp-admin and go to Appearance -> Themes
Select upload and then browse
Select the .zip folder of your template and upload/activate it
Forum: Fixing WordPress
In reply to: newbie needs help with editing basic page!Try to remove the h3 part from .page-heading h3 so it is just .page-heading
Forum: Fixing WordPress
In reply to: newbie needs help with editing basic page!Ohh I thought you wanted to just get rid of the background.
Change it to the below to add the other ones.
.page-heading, .page-heading:hover, .block-background, .page-heading h3, .minimize { background: none; }Forum: Fixing WordPress
In reply to: removing author and commentsUnfortunately it is a premium theme and all support should be directed to the theme author. We only support the free themes here. I would just submit a message or comment on the ThemeForest page for this theme.
Forum: Fixing WordPress
In reply to: Out of Control SpamNo. But the way that I go through them all quickly is just by looking to see if anyone posted a link or submitted a URL with their comment. If so, then I don’t even look at it.
After awhile you will probably just start to trust Askimet and not even go through them anymore.
Forum: Fixing WordPress
In reply to: newbie needs help with editing basic page!Put the below in style.css at the bottom or in your theme options if it allows you to add additional CSS and see if that is what you wanted.
.page-heading, .page-heading:hover, .block-background { background: none; }