The heading for my topics (Information) it doesn’t look normal

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 năm cách đây
Please help!!!! The heading for my topics (Information) it doesn’t look normal.

This is how it looks right now

Information
•  Contact Us
•  About Us
And so on….

When it suppose to look like this

Information
•  Contact Us
•  About Us
and so on....

With the bold looks, what is the default setting?  I just want the default setting, it doesn’t matter what theme I use, the heading doesn’t look right.

Thanks for your help
13 năm cách đây
in style.css  look for

.block .title

by default, i think it should be bold (in v1.5) - did you make some changes to the css already or maybe to infoblock.ascx ?

you should install mozilla browser with firebug - it makes it easy to find css elements
13 năm cách đây
I don't see what you are talking about.  I have not change anything yet.  
Please let me know.

Thanks,
13 năm cách đây
You are looking in the Administrative theme css.  You should look in the darkOrange theme css or other store theme css.
13 năm cách đây
I thought this look very normal to me.  Here are the code under nopClassic them

NAVIGATIONS

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.block
{
    margin-bottom: 15px;
  padding-bottom: 5px;
  padding-left: 0;
}

.block .title
{
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
  padding: 4px 8px;
}

.block .listbox
{
  font-size: 11px;
  padding: 5px 10px 10px;
  line-height: 18px;
  margin: 0px;
}

.block .listbox ul
{
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 10px;
  color: #3664A5;
  background-color: inherit;
}
13 năm cách đây
can anyone help me???
13 năm cách đây
Do you have a url to your store?  I could look in the CSS and HTML for you.
13 năm cách đây
Oddquarium wrote:
Please help!!!! The heading for my topics (Information) it doesn’t look normal.

This is how it looks right now

Information
•  Contact Us
•  About Us
And so on….

When it suppose to look like this

Information
•  Contact Us
•  About Us
and so on....

With the bold looks, what is the default setting?  I just want the default setting, it doesn’t matter what theme I use, the heading doesn’t look right.

Thanks for your help


You are missing a class name for the info block. It looks like your site is at least 1.50 (jpsaquarium.com), but your info block has a class name from 1.40.

Edit file: NopCommerceStore\Modules\InfoBlock.ascx

Change the following (on line 3) from (the nopCommerce 1.40 value):
<div class="infoblock-navigation">

to (the nopCommerce 1.50 value):
<div class="block block-info">


Save the file and refresh the page.

.
13 năm cách đây
for your categories it looks like this:

<div class="block block-category-navigation">
    <div class="title">
        Categories
    </div>
    <div class="clear"></div>
    <div class="listbox">
        <ul>
            <li class="inactive"><a href="http://jpsaquarium.com/nopCommerce/NopCommerceStore/Category/55-discus-fish.aspx">Discus Fish</a></li><li class="inactive"><a href="http://jpsaquarium.com/nopCommerce/NopCommerceStore/Category/57-discuss-food.aspx">Discus's Food</a></li><li class="inactive"><a href="http://jpsaquarium.com/nopCommerce/NopCommerceStore/Category/58-medications.aspx">Medications</a></li><li class="inactive"><a href="http://jpsaquarium.com/nopCommerce/NopCommerceStore/Category/56-miscellaneous.aspx">Miscellaneous</a></li>
        </ul>
    </div>
</div>

and your info block looks like this:

<div class="infoblock-navigation">
    <div class="title">
        Information
    </div>
    <div class="clear">
    </div>
    <div class="listbox">
        <ul>
            <li><a href="/nopCommerce/NopCommerceStore/ContactUs.aspx">
                Contact Us</a> </li>
            <li><a href="/nopCommerce/NopCommerceStore/AboutUs.aspx">
                About Us</a></li>
            
            <li><a href="/nopCommerce/NopCommerceStore/RecentlyAddedProducts.aspx">
                New products</a></li>
            
            <li><a href="/nopCommerce/NopCommerceStore/CompareProducts.aspx">
                Compare products list</a></li>
            
            <li><a href="/nopCommerce/NopCommerceStore/ShippingInfo.aspx">
                Shipping &amp; Returns</a></li>
        </ul>
    </div>
</div>

change your info block div class to match your category block div class like this:

<div class="block block-category-navigation">
    <div class="title">
        Information
    </div>
    <div class="clear">
    </div>
    <div class="listbox">
        <ul>
            <li><a href="/nopCommerce/NopCommerceStore/ContactUs.aspx">
                Contact Us</a> </li>
            <li><a href="/nopCommerce/NopCommerceStore/AboutUs.aspx">
                About Us</a></li>
            
            <li><a href="/nopCommerce/NopCommerceStore/RecentlyAddedProducts.aspx">
                New products</a></li>
            
            <li><a href="/nopCommerce/NopCommerceStore/CompareProducts.aspx">
                Compare products list</a></li>
            
            <li><a href="/nopCommerce/NopCommerceStore/ShippingInfo.aspx">
                Shipping &amp; Returns</a></li>
        </ul>
    </div>
</div>

then you should have the results you want.
13 năm cách đây
deccks and mb

Thank you both for your help.  It is fix.  The only issue I have left is this....

https://www.nopcommerce.com/boards/t/4476/public-problem-the-link-like-this-httpmywebsitecategory1-boyshoeaspx-doesnt-exist.aspx

Thanks again
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.