Technique #1. Using CSS [adding "display:none" property].
1. Go to EDIT HTML page.2. Press CTRL + F, type in blog-pager on the search bar.
3. You'll see style declarations similar to this:
or this:
4. Add display:none; BEFORE each }. Thus, the new set of codes will be:
or this:
What it means.
display:none - hides the element altogether.
5. SAVE TEMPLATE.
Technique #2. Using CSS [commenting out whole blog-pager block].
1. Follow Technique #1, steps 1-3.2. Replace the old block to new block of css codes.
OLD BLOCK:
NEW BLOCK:
OLD BLOCK:
NEW BLOCK:
What we did.
We PLACED THE CODES INSIDE /* */, i.e. /* codes here */. This signifies that they are CSS comments thus completely ignored by the browser.
More info: CSS Comments
3. SAVE TEMPLATE.
Technique #3. Through Expand Widget Templates Mode [commenting out the include statement].
Backup your template!1. Go to EDIT HTML page.
2. Tick EXPAND WIDGET TEMPLATES.
3. Press CTRL + F, type in <b:include name='nextprev'/> on the search bar.
4. You'll see a similar code like this:
REPLACE the above highlighted line with this:
<!-- <b:include name='nextprev'/> -->
Thus, the new codes will be:
What we did.
We PLACED THE CODES INSIDE <!-- -->, i.e. <!-- codes here -->. This signifies that the tag is an HTML comment and like CSS comments, these are ignored by the browser; a.k.a. "ignore-me" code.
More info: Commented out - HTML
5. SAVE TEMPLATE.
Technique #4. Through Expand Widget Templates Mode [deleting include statement entirely].
1. Follow Technique #3, steps 1-3.2. You'll see a similar code like this:
DELETE the highlighted line: <b:include name='nextprev'/>
3. SAVE TEMPLATE.
0 comments:
Post a Comment