Menu item is not displaying even i set it up.
-
Menu Items are not showing up along with Home icon in my blog. I added the menu , save menu with pages by Appearances -> Menu. Could you please tell me why it is not showing up ?
And also I was trying to increase the image width and it is not reflecting when I preview it.
Here is the code that i updated in CSS .
#container {
width:1136px;
margin:0 auto;
}.post .content img {
max-width:1000px;
}.one-column .post .content img {
max-width:1506px;
}#westsidebar {
width:121px;
float:left;
padding-right:5px;
font-size:95%;
overflow:hidden;
}#eastsidebar {
width:129px;
float:right;
font-size:95%;
overflow:hidden;
}#main {
background:#FFF url(‘img/main_shadow.gif’) top repeat-x;
width:805px;
float:left;
overflow:hidden;
padding:13px 15px 15px;
}#sidebar {
background:#F7F7F7 url(‘img/sidebar_shadow.gif’) top repeat-x;
width:300px;
float:right;
font-size:95%;
line-height:145%;
overflow:hidden;
padding-top:8px;
}And also I increased the limited width of image. Still it is not reflecting.
my blog :
regoti.wordpress.comThanks,
BalajiThe blog I need help with is: (visible only to logged in users)
-
Regarding your image problems:
a) max-width is not the property you should be using since that would _limit_ the maximum width to 1000px. In other words, if your image is of 1100px width, it would be resized to 1000px since that’s the _maximum_ you’re allowing.
b) it won’t work, because your image has a maximum width of 600px… so it’s within the allowed width (which you’re defining as 1000px)
c) currently your image has a query string that’s limiting its size. Currently it looks like this:
http://regoti.files.wordpress.com/2011/05/ipgp.png?w=600&h=471Notice the “w=600”, that’s what’s limiting your image width — and height. By removing the QS, your images should become larger.
Other than that, the rest should work.
-
How can remove query string ? I have set up maximum width in the text box to 1000px, still it is showing the same way. Size of image didn’t come to original level. Is there any code or snippet do i need to use?
Thanks for your help.
-
To remove the query string, click the HTML (next to Visual) tab, you will be in HTML mode… find the image path and take it from there.
I have set up maximum width in the text box to 1000px
Where did you do this? in the text box that’s below the CSS Editor or the one in the Media Settings page? If in the former, don’t do it there; the max width should be set in the Media Settings page.
- The topic ‘Menu item is not displaying even i set it up.’ is closed to new replies.