Vamsi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Hide menu in one pageYou can do something like this.
Find the id of the page from the admin panel(when you edit the page, id is available in url )
For example page : portfolio(id 1631)
.page-id-1631 #nav-section{ display:none; }
Forum: Themes and Templates
In reply to: Dancing text below a slider boxHave you tried setting max-height to some value and overflow to hidden ?
Forum: Themes and Templates
In reply to: Can load CSS but not JS? Problem with enqueue_scripts?Have you tried using get_stylesheet_uri instead of get_template_directory_uri .?
Forum: Themes and Templates
In reply to: Why won't my image border go away?border property is not supported in HTML5.
In your stylesheet either remove border property or make it nonebody.page .hentry img, body.single .hentry img { padding: 7px; border: solid 1px #dddddd; /* REMOVE THIS */ }
Forum: Themes and Templates
In reply to: Help! Recent Posts displaying over the posting bodyIn your style.css
.site-main .sidebar-container { height: 0; position: absolute; top: 40px; right:0; /* ADD this property */ width: 100%; /* Make this 300px or 280px ;*/ z-index: 1; }
Forum: Themes and Templates
In reply to: Header Image ScrollingIf I understood correctly.. Are you thinking about doing something like this ?
Forum: Themes and Templates
In reply to: How do I add Facebook Video as Featured VideoHave you tried embedding facebook video code ?
https://developers.facebook.com/docs/plugins/embedded-video-player
Forum: Themes and Templates
In reply to: Creating space between subpagesCan you post your link and explain problem in more detail ?
Forum: Themes and Templates
In reply to: Header Image ScrollingPost your website link.
Forum: Themes and Templates
In reply to: How to edit a button using CSSIt is not css. It will be in php file the renders single post. The current one ‘BUY NOW’ is an image, you can replace that image with the text in the php file
Forum: Themes and Templates
In reply to: Unable to modify sidebarsTo rearrange.. Just drag and drop the widgets.
Here is the complete guide about widgets
In your theme header.php file simply add this line anywhere between <head></head> tags (You can add along with other meta tags)
<meta property="og:description" content="Description of your website" />
Goto https://developers.facebook.com/tools/debug/
Enter your website url click on debug
Then click on ‘Fetch new scrape information’
Forum: Themes and Templates
In reply to: CS for textCheck your theme settings, if there is any option to change this. If not, check header.php file.
Forum: Themes and Templates
In reply to: Custom CSS ProblemHave you tried
display:none;
content property usage pseudo elements
Forum: Themes and Templates
In reply to: Page Pagination prroblemSince you have created a template ??
Explore pagination functions.
It clearly explains where to add pagination calls.