Tareq
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Theme: Oxygen] Increasing width on postsI’ll install this theme on my local and get back to you. Think it’s a bit of CSS hackery to be honest.
Forum: Themes and Templates
In reply to: [Theme: Oxygen] Increasing width on postsDo you have any widgets displayed in your sidebar?
Forum: Themes and Templates
In reply to: [Clean Retina] Remove text and link slideshowWhen you add an image to your slideshow, ensure the Caption and Link fields are empty. You can do this for existing images too!
Forum: Themes and Templates
In reply to: Customizing my blogCleared your browser cache?
Forum: Themes and Templates
In reply to: Giant gap under my header.You’re welcome!
Forum: Themes and Templates
In reply to: [Portfolio Press] Centering Menu and logo@andrew – True, my bad!
Forum: Fixing WordPress
In reply to: Can't login Using WP-ADMIN – Blank White ScreenTry adding wp-login.php on the end of your URL for example:
If WordPress is installed to your root directory:
www.yourdomain.com/wp-login.phpIf WordPress is installed in a sub-directory:
www.yourdomain.com/wp/wp-login.phpThis worked for me when renaming my plugins folder didn’t work.
The only other thing I can think of is that one of the files in the theme folder has become corrupted, try copying the Theme folder from a fresh copy of WordPress and if you made changes to any theme files you can copy these across individually (painstaking process for a lot of files, but it may work).
I would strongly suggest creating a Child Theme rather than copying to the original Theme folder. You can find more information about that here.
Forum: Themes and Templates
In reply to: [Sampression Lite] Problem with logo upload boxIt looks like a WordPress issue and as such you’ll probably be better off posting this question in How-To and Troubleshooting.
It looks to me like a jQuery conflict of some sort but I wouldn’t like to be tested on that.
Sorry I can’t help you guys out.
Best of luck,
TareqForum: Themes and Templates
In reply to: [Sampression Lite] Problem with logo upload boxCan you click the box header and drag it?
Forum: Themes and Templates
In reply to: [Yoko] Remove entry details in search resultsAh OK!
We can see that it calls in the ‘
content‘ and ‘search‘ by using theget_template_part()function.In this case, the code you’ll be looking to edit will be in
content.php.Basically, open up
content.phpand remove or comment out the following lines of code:<p><?php echo get_the_date(); ?><br/> <?php _e( 'by', 'yoko' ); ?> <?php the_author() ?><br/> <?php comments_popup_link( __( '0 comments', 'yoko' ), __( '1 Comment', 'yoko' ), __( '% Comments', 'yoko' ) ); ?></p>Make sure you remove the
<p>and</p>otherwise you’ll get some formatting issues.Let me know if this has helped.
Regards,
Tareq
Forum: Themes and Templates
In reply to: [Portfolio Press] Centering Menu and logoYou could also do this:
#header, #logo { margin: 0 auto; }in you main css file.
Tareq
Forum: Themes and Templates
In reply to: Remove Title box on homepage with Hustle ThemeI can’t see anything with your name on?
If you have made any recent changes, have you cleared your browser cache?
Tareq
Forum: Themes and Templates
In reply to: [Custom Community] full width header not happeningI will try to help you out as much as I can. Firstly, I would strongly suggest moving your CSS away from inline and use a referenced stylesheet. You can find more information on how to do this here.
I see your header container is defined as 1200px in width and your image itself is 1000px in width. I would not recommend increasing the image size to fit the container as this will distort the image (you’ll lose quality).
If you change the following in your CSS:
#header {
background-image: url(http://julieanndalton.com/wordpress/wp-content/uploads/2013/04/JulieAnnDaltonBanner-WPsized.jpg);
/* background-repeat: no-repeat;*/
/* background-position: left 10px;*/
display: block; /*Added this line*/
margin-left: auto; /*Added this line*/
margin-right: auto; /*Added this line*/
}Then also change the value here:
#header {
height: 263px;
width: 1000px;
}You should find your header image has been centralized. This is the only valid CSS way to do it (in my experience).
Hope this helps you,
Regards,
TareqForum: Themes and Templates
In reply to: Theme Oxygen messed upCan you post your URL or are you working on a local machine?
Tareq
Forum: Themes and Templates
In reply to: [Oxygen] Removing "Menu" wordSame as WPyogi, cannot see any ‘Menu’.