Robin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Custom page to the end of the navbaradding it through jquery was to ensure that all browsers r supported as such
as :last-child will not be supported by older browsers or IE 9 or lesserForum: Themes and Templates
In reply to: Custom page to the end of the navbari was just purposing to add a special class through jquery
but u very well can just go to css
ul li:last-child { float:right; position:relative; }..... Something like thatForum: Themes and Templates
In reply to: Custom page to the end of the navbarsomething like
$(“ul li:last-child”).addClass(“my-last-menu-item”);
Forum: Themes and Templates
In reply to: Custom page to the end of the navbarli:last-child
you might have to create a jquery function which adds a class using li:last-child to this li (and than u can float it right or do what ever with your last menu item)
Forum: Themes and Templates
In reply to: FTP Install / Upgrade Problemstry uploading it through ftp
Forum: Themes and Templates
In reply to: Can't fix image cropping problem with theme‘.single-portfolio .portfolio-thumbs img {
display: block;
margin: 0 auto;
}’
margin:0 auto; would make them center alignedsecondly regarding the upload size, so it might be that for these pages you use a particular theme file (not sure how theme is structured)
so it could be in that particular file that it hard crops your images (which it has to as the coder has to make sure the images dont go out of container (mainbody) this is where .container class could use overflow:hidden propertyOr that thing could well be managed through your themes functions file,
Or may be you could follow the css hack i have given u and make sure you upload photos of size 620 by what ever the height is, as i my code i had just put the height u could define height and width
these are general assumptions cant say more than this without actually looking at the code
Forum: Networking WordPress
In reply to: Category Feeds on SubsitesGot it 🙂
So two cases while answering any of the question related to rss feed
1: Bad totally bad, bad for seo, server could crash, endless loop, site crash, db crash “NO dont do it ”
2:have a dedicated server, dont care for seo, have database management, are not extensively pulling feed on every minute bases. Than you can use wordpress MU sitewide tags or autoblog 🙂
:))
Forum: Hacks
In reply to: Styling adminbarSorry you might have to use buddypress forum/help for that –
i do use buddypress on my mulitsite but i havnt used those plugins
Forum: Fixing WordPress
In reply to: Local to LiveNot sure how ur server is structured
but 1: yes xamp > htdocs > yoursite
copy this to root of your server public_html (usually again not sure how your server is structured)-paste the content of (yoursite) unless you want to have something like url/yoursiteYes it copies everything
Second : when u setup your local for > yoursite > you would have added the DB info and you would have phpmyadmin which has the DB for (yoursite) dump the sql from it (this database sql dump would have links to your localhost which needs to be found and replaced with your new domain- would suggest using a DB find and replace script to do it than just simple find and replace)
3: Once you have this dump and u have uploaded your site on to your live server – go to your server control panel create the database dump the sql save the username password and your server hostname on a document and go to your ftp/file manager > (yoursite) > wp-config.php update the database connection info with your new one
4: i also suggest and use it personally as well before shifting go to your (yoursite) dashboard > tools > export > this exports your all posts, categories, basically your content and media
Forum: Themes and Templates
In reply to: Can't fix image cropping problem with themeor if u want to modify the code
Go to css
add
#main .container
{
overflow:hidden;
}
.single-portfolio .portfolio-thumbs img {
display: block;
height: 450px;
}But this would stretch your image as at time of upload it is being cropped up.
as you cannot go above width:640px (due to your container’s fixed width)Forum: Themes and Templates
In reply to: Can't fix image cropping problem with themei am assuming that the code would be using standard wordpress upload and cropping up the thumbnails
you can go check into settings > media and see different optionsForum: Networking WordPress
In reply to: Remove network, but keep the secondary siteAs per my knowledge it doesnt matter if theme is for network or not,because every site can have individual theme or u can create a child theme for the main theme
I can understand some of the plugins might not have functionality to cater to way multisite works but not themes
what exactly r u doing?
how r u trying to install theme?Forum: Networking WordPress
In reply to: Category Feeds on SubsitesJohn, what i am assuming from that link is, that they r constantly pulling feed in widget,may be caused it to get into a loop.
My reasoning was may be people r using rss feed for some other reasons as well which would not put it into loop or so do i think
In my case, using autoblog i get the feed from particular category on my main site to populate the same category on my sub-site. and 90% chance is the main site content is not going to be updated in months and secondly even if it is updated every day i dont pull feed every time it is updated (autoblog gives u option to control that)
in my case we r using this system as knowledge base for agent/sub sites as to not writing the same info again and again, and i dont see it getting heavy/ or ending in loop. (and its on a pvt network so no worrying about SEO)So just putting in perspective before we jump on saying oh its bad dont do it, we might want to first understand what the need could be, it might not be that server heavy or it might be one time pull.
Forum: Fixing WordPress
In reply to: Local to LiveYes these are the 4 steps u follow while shifting
and i will add a 5th step to it is
Go to Tools > Export (u get an xml of your posts,categories, pages) which u can import onto your new site as well)the codex is for people who want to read deeply into each and every step
Forum: Hacks
In reply to: Styling adminbarWhy i am saying to use functions way is if u see i have used a add_action wp_head (that is for your front (user side)
and for your admin side add one more line
add_action( ‘admin_head’, ”link_to_stylesheet’ );
this is for admin sideas both use different hook to produce the top masthead