wp-21
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Post Displayed with full content on Home pageHi Ajay,
You can simply go to the Dashboard and under the settings>>reading ther is an option to show full text or summary for the posts, you can select summary and it will show the summary of the full post.
For the featured image, you can select a featured image from the post editor panel, it’s at the below right hand side in the sidebar.Cheers..:)..
Forum: Themes and Templates
In reply to: [Customizr] Logo Image SizeHi benji,
You are using a small image by default which will be blurred when viewed on smaller screens.
I would suggest to use a larger dimension image and then you can specify its height but not its width.
It will then scale and will not be blurred.Cheers..:)..
Forum: Themes and Templates
In reply to: [Custom Community] Space between bottom paragraph & footerI literally removed that space in FF with firebug easily by removing those br tags, removing margin on p tag and removing that min-height property.
Forum: Themes and Templates
In reply to: Menu on Preference Lite theme always returns to home page?Hi,
Your website is appearing scattered all over the place, it seems CSS is not being applied.
The problem seems to be with all of the links in the site.
There might be a problem with your database Or try changing permalinks.Forum: Themes and Templates
In reply to: [Custom Community] Space between bottom paragraph & footerHi,
You need to do three things to reduce the space:
1.There are two extra<br>tags in your footer div, remove them.You can do this from inside your footer.php file
2.Remove themargin-bottomfrom p tag around line 45.
3.And there is amin-heightproperty set to 10px remove it, its around line 47.Cheers..:)..
Forum: Themes and Templates
In reply to: [Gridiculous] How to remove the page title from each pageHi,
This is the class you can use to hide all the page titles:h1.post-title{display:none}Cheers..:)..
Forum: Themes and Templates
In reply to: [Supernova] Post Limit and Header QuestionHi,
What is the total number of posts..?
Yea you can add the additional images or type to the header by widgets..Cheers..:).
Forum: Themes and Templates
In reply to: Links in sidebar disappearingHi,
Pls post a link to your site..Cheers..:)..
Forum: Themes and Templates
In reply to: make background more narrow twenty twelve themeHi dequecolour,
Yea its a CSS edit, you have to alter the width for the white area, but correspondingly also have to change the width of all the inner elements to make the layout adapt to the new width settings.
So yea its simple but a little time consuming.Cheers..:)…
Forum: Themes and Templates
In reply to: [Customizr] Remove This pictureHi,
yeah you can use the CSS as :.navbar.notresp{ display:none}in your child theme.
Cheers..:)..
Forum: Themes and Templates
In reply to: [Customizr] Remove This pictureHi,
Which picture..?
You can hide the picture via css by using property display:none.Cheers..:)..
Hi bjgarber,
The problem is with your image.You have set the image to align left or float left and not cleared the float afterwards, that is causing the text below that to wrap up alongside the image.The solution would be to remove the align left as there is no need for image aligning left as there is only one image there but if you want to align the image to the left then just place a clearing div after the image.like this:
<div style="clear:both"></div>Cheers..:)..
Forum: Themes and Templates
In reply to: how to get three image link menu in centerIt can be done via html and css easily no need of any plugin for that.Have to play with the margin or padding and you will be good to go.
Or post a link to your site for specific help..
Cheers..:)..
Forum: Themes and Templates
In reply to: z-index of individual menu linksWell one way you can do this is if you can alter the z-index of each of the links separately.
You can do this from your dashboard by going into the Appearence>>menu
and clicking screen options at the top right hand side.
And checking the CSS Classes checkbox.
This will enable a css class field under the menu items, so from there you can put a specific class to each item and can change the z-index thereof.Cheers..:)..
Forum: Themes and Templates
In reply to: Spilt Oxygen Header to have one half link to another websiteHi,
If you want single image to link to two different parts then you would have to use image maps, refer to this article for that:Or
If you want to do it simply by placing two images, one for logo and other for right half then go into the header.php file and a link there manually….and remember to do the changes in a child theme only to avoid any loss of data if theme is updated in future…
Cheers..:)..