• Resolved yeng

    (@webengineer360)


    Hello!

    I have a “theme my login” plugin installed on my site. I would like to know how to make the widget above the “Meta” that is built in with this theme.

    I love this theme. πŸ™‚

Viewing 15 replies - 1 through 15 (of 45 total)
  • Theme Author arthur-gareginyan

    (@arthur-gareginyan)

    Hello!
    Sorry for the delay.
    Thank you for using Anarcho-Notepad! I am glad that you love my work! πŸ™‚

    Do I understand correctly that you want to be able to customize the login.php
    in the theme settings page?

    Thread Starter yeng

    (@webengineer360)

    No, I actually just want the “theme my login” plugin widget to be on top of your theme “meta” (“What Is This Place” and “Frends & Links”).

    Theme Author arthur-gareginyan

    (@arthur-gareginyan)

    Ok. I’m already working on it.

    Theme Author arthur-gareginyan

    (@arthur-gareginyan)

    Wait for the update theme where it will be fixed.
    In update v2.2 added several more areas for widgets.

    Theme Author arthur-gareginyan

    (@arthur-gareginyan)

    Issue resolved with the update v2.2

    Thread Starter yeng

    (@webengineer360)

    I appreciate that. Thanks a bunch Arthur! πŸ™‚

    Theme Author arthur-gareginyan

    (@arthur-gareginyan)

    You are welcome! πŸ™‚

    Hi,
    I quite like this theme except for that thumping great red date on each post! Is it difficult for me to edit your style sheet to remove it?

    B

    Theme Author arthur-gareginyan

    (@arthur-gareginyan)

    Hi!
    Thank you for using Anarcho-Notepad! I am glad that you like my work!
    In order to make it invisible just use this code:

    #content .col01 .post-inner .date-tab {
    	position: absolute;
    	clip: rect(1px 1px 1px 1px); /* IE7 */
    	clip: rect(1px, 1px, 1px, 1px);
    }

    Hi Arthur,
    I assume this goes in style.css but where please?

    B

    Theme Author arthur-gareginyan

    (@arthur-gareginyan)

    In style.css find :

    /* Data-tab (Ribbons)
    -------------------------------------------------------------- */

    And replace it:

    position: relative;

    on:

    position: absolute;
    	clip: rect(1px 1px 1px 1px); /* IE7 */
    	clip: rect(1px, 1px, 1px, 1px);

    Replace what exactly?

    Theme Author arthur-gareginyan

    (@arthur-gareginyan)

    Find :

    /* Data-tab (Ribbons)
    -------------------------------------------------------------- */
    #content .col01 .post-inner .date-tab {
    	position: relative;
    	z-index: 1;
    	width: 20%;
    	float: left;
    	font-size: 1.5em;
    	font-weight: bold;
    	line-height: 70%;
    	margin: 0px 10px 10px -90px;
    	color: #000;
    	background-color: #A00B0B;
    	border-radius: 8px 1px 1px;
    	text-shadow: 0px 1px 2px #C53D3D;
    	-webkit-box-shadow: 0px 2px 4px #110303;
    	-moz-box-shadow: 0px 2px 4px #110303;
    	box-shadow: 0px 2px 4px #110303; }

    and replace to :

    /* Data-tab (Ribbons)
    -------------------------------------------------------------- */
    #content .col01 .post-inner .date-tab {
    	position: absolute;
    	clip: rect(1px 1px 1px 1px); /* IE7 */
    	clip: rect(1px, 1px, 1px, 1px);
    	z-index: 1;
    	width: 20%;
    	float: left;
    	font-size: 1.5em;
    	font-weight: bold;
    	line-height: 70%;
    	margin: 0px 10px 10px -90px;
    	color: #000;
    	background-color: #A00B0B;
    	border-radius: 8px 1px 1px;
    	text-shadow: 0px 1px 2px #C53D3D;
    	-webkit-box-shadow: 0px 2px 4px #110303;
    	-moz-box-shadow: 0px 2px 4px #110303;
    	box-shadow: 0px 2px 4px #110303; }

    OK, done that and the ribbon is no more. However, we seem to have a problem with formatting. Not sure how to explain it but essentially, a big chunk of body text now extends across the sidebar on the right from just one message, the first one. I think it has something to do with code in the post. I’ll check it out.

    B

    Ok, check it out: http://williambowles.info

    Of course, removing the date tag means that the title needs to be bigger as it doesn’t stand out. Maybe if the red tag were smaller I could put it back in?

Viewing 15 replies - 1 through 15 (of 45 total)
  • The topic ‘how to make the widget above the "Meta" that is built in with this theme’ is closed to new replies.